Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2010-03-01 19:53:31 +0000
committernitind2010-03-01 19:53:31 +0000
commit4bd2fe2b9156e9fa761f27fa21b75d209b004c98 (patch)
tree61b09d48de3279b94392fa66092d9d05cda6862e /tests/org.eclipse.wst.jsdt.web.ui.tests/src
parenta961b9984ee7f70c0843a2d1955a16839e7f433e (diff)
downloadwebtools.sourceediting-4bd2fe2b9156e9fa761f27fa21b75d209b004c98.tar.gz
webtools.sourceediting-4bd2fe2b9156e9fa761f27fa21b75d209b004c98.tar.xz
webtools.sourceediting-4bd2fe2b9156e9fa761f27fa21b75d209b004c98.zip
[nobug] add public no-arg constructors
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.web.ui.tests/src')
-rw-r--r--tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/AllWebUITests.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/AllWebUITests.java b/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/AllWebUITests.java
index 4365435a3f..c1d7378f9e 100644
--- a/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/AllWebUITests.java
+++ b/tests/org.eclipse.wst.jsdt.web.ui.tests/src/org/eclipse/wst/jsdt/web/ui/tests/AllWebUITests.java
@@ -17,7 +17,10 @@ import junit.framework.TestSuite;
import org.eclipse.wst.jsdt.web.ui.tests.style.StyleTests;
-public class AllWebUITests {
+public class AllWebUITests extends TestSuite {
+ public AllWebUITests() {
+ super("JSDT Web UI Tests");
+ }
public static Test suite() {
TestSuite suite = new TestSuite("JSDT Web UI Tests");

Back to the top