Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.tests/test/org/eclipse/papyrus/uml/profile/drafter/tests/AllTests.java')
-rw-r--r--plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.tests/test/org/eclipse/papyrus/uml/profile/drafter/tests/AllTests.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.tests/test/org/eclipse/papyrus/uml/profile/drafter/tests/AllTests.java b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.tests/test/org/eclipse/papyrus/uml/profile/drafter/tests/AllTests.java
new file mode 100644
index 00000000000..7f91ac01b48
--- /dev/null
+++ b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.tests/test/org/eclipse/papyrus/uml/profile/drafter/tests/AllTests.java
@@ -0,0 +1,47 @@
+/*****************************************************************************
+ * Copyright (c) 2009 CEA LIST & LIFL
+ *
+ *
+ * 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:
+ * Cedric Dumoulin Cedric.dumoulin@lifl.fr - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.uml.profile.drafter.tests;
+
+
+import org.eclipse.papyrus.uml.profile.drafter.ProfileCatalogTest;
+import org.eclipse.papyrus.uml.profile.drafter.tests.utils.UMLModelCreatorTest;
+import org.eclipse.papyrus.uml.profile.drafter.ui.model.CompoundTypeProviderTest;
+import org.eclipse.papyrus.uml.profile.drafter.ui.model.SimpleModelVisitorTest;
+import org.eclipse.papyrus.uml.profile.drafter.ui.model.StereotypeURLTest;
+import org.eclipse.papyrus.uml.profile.drafter.ui.model.TypeProviderTest;
+import org.eclipse.papyrus.uml.profile.drafter.ui.model.TypeProviderTest2;
+import org.eclipse.papyrus.uml.profile.drafter.utils.UMLPrimitiveTypesModelTest;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+/**
+ * Test suite for this fragment
+ */
+@RunWith(Suite.class)
+@SuiteClasses({
+ ProfileCatalogTest.class,
+ EclipseProjectTest.class,
+ ModelSetManagerTest.class,
+ UMLModelCreatorTest.class,
+ CompoundTypeProviderTest.class,
+ SimpleModelVisitorTest.class,
+ StereotypeURLTest.class,
+ TypeProviderTest.class,
+ TypeProviderTest2.class,
+ UMLPrimitiveTypesModelTest.class
+})
+public class AllTests {
+
+}

Back to the top