Skip to main content
summaryrefslogtreecommitdiffstats
blob: c3792fbbc01a1929cc7f7b15a85a661bd4e49779 (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 23, 2011
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.ats.client.integration.tests.ats.actions;

import org.eclipse.osee.ats.actions.OpenReviewPerspectiveAction;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;

/**
 * @author Donald G. Dunne
 */
public class OpenReviewPerspectiveActionTest extends AbstractAtsActionPerspectiveTest {

   @Override
   public IWorkbenchWindowActionDelegate getPerspectiveAction() {
      return new OpenReviewPerspectiveAction();
   }

}

Back to the top