Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/AdaptableDecoratorTestCase.java')
-rw-r--r--tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/AdaptableDecoratorTestCase.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/AdaptableDecoratorTestCase.java b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/AdaptableDecoratorTestCase.java
index 58000c0b878..c90e587d3fc 100644
--- a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/AdaptableDecoratorTestCase.java
+++ b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/adaptable/AdaptableDecoratorTestCase.java
@@ -12,6 +12,8 @@ package org.eclipse.ui.tests.adaptable;
import java.io.ByteArrayInputStream;
+import junit.framework.TestSuite;
+
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
@@ -47,6 +49,14 @@ public class AdaptableDecoratorTestCase extends UITestCase implements
protected IFile testFile;
+ public static TestSuite suite() {
+ TestSuite ts = new TestSuite();
+ ts.addTest(new AdaptableDecoratorTestCase("testEnableDecorator"));
+ ts.addTest(new AdaptableDecoratorTestCase("testDisableDecorator"));
+ ts.addTest(new AdaptableDecoratorTestCase("testRefreshFullContributor"));
+ ts.addTest(new AdaptableDecoratorTestCase("testRefreshLightContributor"));
+ return ts;
+ }
/**
* Constructor for DecoratorTestCase.
*

Back to the top