Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/infra/emf/org.eclipse.papyrus.infra.emf.gmf.tests/tests/org/eclipse/papyrus/infra/emf/gmf/tests/AllTests.java')
-rw-r--r--tests/junit/plugins/infra/emf/org.eclipse.papyrus.infra.emf.gmf.tests/tests/org/eclipse/papyrus/infra/emf/gmf/tests/AllTests.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/junit/plugins/infra/emf/org.eclipse.papyrus.infra.emf.gmf.tests/tests/org/eclipse/papyrus/infra/emf/gmf/tests/AllTests.java b/tests/junit/plugins/infra/emf/org.eclipse.papyrus.infra.emf.gmf.tests/tests/org/eclipse/papyrus/infra/emf/gmf/tests/AllTests.java
new file mode 100644
index 00000000000..18476373138
--- /dev/null
+++ b/tests/junit/plugins/infra/emf/org.eclipse.papyrus.infra.emf.gmf.tests/tests/org/eclipse/papyrus/infra/emf/gmf/tests/AllTests.java
@@ -0,0 +1,35 @@
+/*****************************************************************************
+ * Copyright (c) 2016 Christian W. Damus 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 accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Christian W. Damus - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.infra.emf.gmf.tests;
+
+import org.eclipse.papyrus.infra.emf.gmf.util.tests.CommandTreeIteratorTest;
+import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
+import org.eclipse.papyrus.junit.framework.runner.Headless;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+/**
+ * The test suite for the {@code org.eclipse.papyrus.infra.emf.gmf} plug-in.
+ */
+@Headless
+@RunWith(ClassificationSuite.class)
+@SuiteClasses({
+ CommandTreeIteratorTest.class,
+})
+public class AllTests {
+
+ public AllTests() {
+ super();
+ }
+}

Back to the top