Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Goubet2014-01-30 14:19:34 +0000
committerLaurent Goubet2014-01-30 15:43:18 +0000
commit468ee4194aaa05d6c3d90d6655f933739977d586 (patch)
tree79ae3d6a6c38771a3980fba479c8fe856520a0e0 /plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite
parent578f5e206473a3a4286246648b969282bf0a1029 (diff)
downloadorg.eclipse.emf.compare-468ee4194aaa05d6c3d90d6655f933739977d586.tar.gz
org.eclipse.emf.compare-468ee4194aaa05d6c3d90d6655f933739977d586.tar.xz
org.eclipse.emf.compare-468ee4194aaa05d6c3d90d6655f933739977d586.zip
extract fuzzy in a test fragment
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/AllPluginTests.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllPluginTests.java b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllPluginTests.java
deleted file mode 100644
index 33fda6d46..000000000
--- a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllPluginTests.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2012 Obeo.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Obeo - initial API and implementation
- *******************************************************************************/
-package org.eclipse.emf.compare.tests.suite;
-
-import junit.framework.JUnit4TestAdapter;
-import junit.framework.Test;
-
-import org.eclipse.emf.compare.tests.FuzzyTest;
-import org.eclipse.emf.compare.tests.NodesFuzzyTest;
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-
-/**
- * This class will be used to cover all of our OSGi-dependant tests (anything that needs be run as
- * "plugin test" and cannot run as standalone "JUnit test" should be added here). Both Suites will be launched
- * by the tycho build.
- *
- * @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a>
- */
-@RunWith(Suite.class)
-@SuiteClasses({FuzzyTest.class, NodesFuzzyTest.class })
-public class AllPluginTests {
- /**
- * This will return a suite populated with all tests available through this class.
- *
- * @generated
- */
- public static Test suite() {
- return new JUnit4TestAdapter(CompareTestSuite.class);
- }
-}

Back to the top