Skip to main content
summaryrefslogtreecommitdiffstats
blob: 14cc0a62dc5d637dfe8270727b2de1cf1d81d358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Created on Oct 24, 2011
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.ats.actions;

import org.eclipse.osee.ats.core.AtsTestUtil;
import org.eclipse.osee.framework.core.exception.OseeCoreException;

/**
 * @author Donald G. Dunne
 */
public class OpenParentActionTest extends AbstractAtsActionRunTest {

   @Override
   public OpenParentAction createAction() throws OseeCoreException {
      return new OpenParentAction(AtsTestUtil.getOrCreateTask());
   }

}

Back to the top