Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNitin Dahyabhai2013-01-08 19:36:05 +0000
committerNitin Dahyabhai2013-01-08 19:36:05 +0000
commite14197bc2c631c01dc10d415d38419245551868c (patch)
treee03f35bfedf528aa5ed412385e9881be670caaae
parent038a4dfa88f201daa7620bb29371db06da788d7f (diff)
downloadwebtools.jsdt.core-R3_4_maintenance.tar.gz
webtools.jsdt.core-R3_4_maintenance.tar.xz
webtools.jsdt.core-R3_4_maintenance.zip
[nobug] restore whole suiteR3_4_maintenance
-rw-r--r--development/org.eclipse.wst.jsdt.unittests/src/org/eclipse/wst/jsdt/unittests/internal/MasterJSDTTestSuite.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/development/org.eclipse.wst.jsdt.unittests/src/org/eclipse/wst/jsdt/unittests/internal/MasterJSDTTestSuite.java b/development/org.eclipse.wst.jsdt.unittests/src/org/eclipse/wst/jsdt/unittests/internal/MasterJSDTTestSuite.java
index b57cc85a..0b520b66 100644
--- a/development/org.eclipse.wst.jsdt.unittests/src/org/eclipse/wst/jsdt/unittests/internal/MasterJSDTTestSuite.java
+++ b/development/org.eclipse.wst.jsdt.unittests/src/org/eclipse/wst/jsdt/unittests/internal/MasterJSDTTestSuite.java
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Copyright (c) 2004,2009 IBM Corporation and others.
+ * Copyright (c) 2004, 2013 IBM Corporation and others.
*
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0 which
@@ -18,6 +18,9 @@ import junit.framework.TestSuite;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.Platform;
+import org.eclipse.wst.jsdt.core.tests.RunJSDTCoreTests;
+import org.eclipse.wst.jsdt.core.tests.compiler.JSDTCompilerTests;
+import org.eclipse.wst.jsdt.ui.tests.JSDTUITests;
import org.eclipse.wst.jsdt.web.core.tests.AllWebCoreTests;
import org.eclipse.wst.jsdt.web.ui.tests.AllWebUITests;
import org.osgi.framework.Bundle;
@@ -32,11 +35,11 @@ public class MasterJSDTTestSuite extends TestSuite {
System.setProperty("wtp.autotest.noninteractive", "true");
-// addTest(JSDTCompilerTests.suite());
-// addTest(RunJSDTCoreTests.suite());
+ addTest(JSDTCompilerTests.suite());
+ addTest(RunJSDTCoreTests.suite());
addTest(AllWebCoreTests.suite());
addTest(AllWebUITests.suite());
-// addTest(JSDTUITests.suite());
+ addTest(JSDTUITests.suite());
IConfigurationElement[] elements = Platform.getExtensionRegistry().getConfigurationElementsFor(EXTENSION_POINT_ID);
for (int i = 0; i < elements.length; i++) {

Back to the top