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

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

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

   @Override
   public Action createAction() throws OseeCoreException {
      OpenWorkflowByIdAction action = new OpenWorkflowByIdAction();
      action.setOverrideId(AtsTestUtil.getTeamWf().getHumanReadableId());
      return action;
   }

}

Back to the top