Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathieu Cartaud2017-09-07 14:09:04 +0000
committerLaurent Goubet2017-09-07 14:09:52 +0000
commit46a0d57740ea9fd2b5df475c5054df887362ca29 (patch)
tree226a2981395e898ab93a103f8b6bc0cfa2e1a962 /plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite
parentdd116940207af247472cc12db866951ea50d470c (diff)
downloadorg.eclipse.emf.compare-46a0d57740ea9fd2b5df475c5054df887362ca29.tar.gz
org.eclipse.emf.compare-46a0d57740ea9fd2b5df475c5054df887362ca29.tar.xz
org.eclipse.emf.compare-46a0d57740ea9fd2b5df475c5054df887362ca29.zip
[518760] Remove legacy JUnit3 artefacts
Diffstat (limited to 'plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite')
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllTests.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllTests.java b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllTests.java
index 21a233f10..2ecd6fa88 100644
--- a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllTests.java
+++ b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllTests.java
@@ -81,10 +81,6 @@ import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
-import junit.framework.JUnit4TestAdapter;
-import junit.framework.Test;
-import junit.textui.TestRunner;
-
/**
* This test suite allows us to launch all tests for EMF Compare at once.
*
@@ -112,23 +108,6 @@ import junit.textui.TestRunner;
ConflictImplicationsTest_Bug484579.class, PseudoConflictDetectionTest.class, ComplexMergeTest.class,
ConflictSearchTest.class, DiffRelationshipComputerTest.class })
public class AllTests {
- /**
- * Standalone launcher for all of compare's tests.
- *
- * @generated
- */
- public static void main(String[] args) {
- TestRunner.run(suite());
- }
-
- /**
- * This will return a suite populated with all tests available through this class.
- *
- * @generated
- */
- public static Test suite() {
- return new JUnit4TestAdapter(CompareTestSuite.class);
- }
@BeforeClass
public static void fillEMFRegistries() {

Back to the top