Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Goubet2012-11-07 11:00:34 +0000
committerLaurent Goubet2012-11-07 11:00:34 +0000
commitfa51feeb9dc202dab7d8dd75df2d599a6dcbebd8 (patch)
tree3921ec01f513e2fd2e8ee903560483b5e48b4037 /plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite
parentc9a278aaea7d139498f0d0f7a34c065afd922411 (diff)
downloadorg.eclipse.emf.compare-fa51feeb9dc202dab7d8dd75df2d599a6dcbebd8.tar.gz
org.eclipse.emf.compare-fa51feeb9dc202dab7d8dd75df2d599a6dcbebd8.tar.xz
org.eclipse.emf.compare-fa51feeb9dc202dab7d8dd75df2d599a6dcbebd8.zip
Missing file from commit bf4c9d4
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.java39
1 files changed, 39 insertions, 0 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
new file mode 100644
index 000000000..4e2cd8b49
--- /dev/null
+++ b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/suite/AllPluginTests.java
@@ -0,0 +1,39 @@
+/*******************************************************************************
+ * 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.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, })
+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