Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Ladenberger2012-04-10 15:10:34 +0000
committerLukas Ladenberger2012-04-10 15:10:34 +0000
commitdf1ca4e2079f29831e74eb66d2592f7f9ee194c3 (patch)
tree6bb604279ba1f92ceb6f86163bd9cc0c1efd1840
parent6cbcbb788a2cb7dc40ad62425c554fd6daf61ed9 (diff)
downloadorg.eclipse.rmf-df1ca4e2079f29831e74eb66d2592f7f9ee194c3.tar.gz
org.eclipse.rmf-df1ca4e2079f29831e74eb66d2592f7f9ee194c3.tar.xz
org.eclipse.rmf-df1ca4e2079f29831e74eb66d2592f7f9ee194c3.zip
cleanup pror tests
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/pror/reqif10/util/AllUtilTests.java22
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/configuration/tests/AllConfigurationTests.java (renamed from org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/configuration/tests/AllTests.java)2
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeDefinitionTests.java26
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeValueTests.java24
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderDatatypeDefinitionTests.java26
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderTests.java27
-rw-r--r--org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllTests.java26
7 files changed, 126 insertions, 27 deletions
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/pror/reqif10/util/AllUtilTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/pror/reqif10/util/AllUtilTests.java
new file mode 100644
index 00000000..1161cad1
--- /dev/null
+++ b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/pror/reqif10/util/AllUtilTests.java
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Formal Mind GmbH and University of Dusseldorf.
+ * 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:
+ * Lukas Ladenberger - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.rmf.pror.reqif10.util;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+@RunWith(Suite.class)
+@SuiteClasses({ ConfigUtilTest.class })
+public class AllUtilTests {
+
+}
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/configuration/tests/AllTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/configuration/tests/AllConfigurationTests.java
index b835a228..930af84b 100644
--- a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/configuration/tests/AllTests.java
+++ b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/configuration/tests/AllConfigurationTests.java
@@ -18,7 +18,7 @@ import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ ProrSpecViewConfigurationTest.class})
//TODO: Add all other tests
-public class AllTests {
+public class AllConfigurationTests {
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeDefinitionTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeDefinitionTests.java
new file mode 100644
index 00000000..2cab83b5
--- /dev/null
+++ b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeDefinitionTests.java
@@ -0,0 +1,26 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Formal Mind GmbH and University of Dusseldorf.
+ * 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:
+ * Lukas Ladenberger - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.rmf.reqif10.provider;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+@RunWith(Suite.class)
+@SuiteClasses({ AttributeDefinitionBooleanTest.class,
+ AttributeDefinitionDateTest.class,
+ AttributeDefinitionEnumerationTest.class,
+ AttributeDefinitionIntegerTest.class,
+ AttributeDefinitionRealTest.class, AttributeDefinitionStringTest.class })
+public class AllItemProviderAttributeDefinitionTests {
+
+}
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeValueTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeValueTests.java
new file mode 100644
index 00000000..fad9582d
--- /dev/null
+++ b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderAttributeValueTests.java
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Formal Mind GmbH and University of Dusseldorf.
+ * 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:
+ * Lukas Ladenberger - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.rmf.reqif10.provider;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+@RunWith(Suite.class)
+@SuiteClasses({ AttributeValueBooleanTest.class, AttributeValueDateTest.class,
+ AttributeValueEnumerationTest.class, AttributeValueIntegerTest.class,
+ AttributeValueRealTest.class, AttributeValueStringTest.class })
+public class AllItemProviderAttributeValueTests {
+
+}
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderDatatypeDefinitionTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderDatatypeDefinitionTests.java
new file mode 100644
index 00000000..fe601871
--- /dev/null
+++ b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderDatatypeDefinitionTests.java
@@ -0,0 +1,26 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Formal Mind GmbH and University of Dusseldorf.
+ * 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:
+ * Lukas Ladenberger - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.rmf.reqif10.provider;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+@RunWith(Suite.class)
+@SuiteClasses({ DatatypeDefinitionBooleanTest.class,
+ DatatypeDefinitionDateTest.class,
+ DatatypeDefinitionEnumerationTest.class,
+ DatatypeDefinitionIntegerTest.class, DatatypeDefinitionRealTest.class,
+ DatatypeDefinitionStringTest.class, DatatypeDefinitionXhtmlTest.class })
+public class AllItemProviderDatatypeDefinitionTests {
+
+}
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderTests.java
new file mode 100644
index 00000000..375eddb5
--- /dev/null
+++ b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllItemProviderTests.java
@@ -0,0 +1,27 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Formal Mind GmbH and University of Dusseldorf.
+ * 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:
+ * Lukas Ladenberger - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.rmf.reqif10.provider;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+@RunWith(Suite.class)
+@SuiteClasses({ EnumValueTest.class, RelationGroupTest.class,
+ RelationGroupTypeTest.class,
+ SpecHierarchyTest.class, SpecificationTest.class,
+ SpecificationTypeTest.class, SpecObjectTest.class,
+ SpecObjectTypeTest.class, SpecRelationTest.class,
+ SpecRelationTypeTest.class })
+public class AllItemProviderTests {
+
+}
diff --git a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllTests.java b/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllTests.java
deleted file mode 100644
index 5edff585..00000000
--- a/org.eclipse.rmf.pror.reqif10.tests/tests/org/eclipse/rmf/reqif10/provider/AllTests.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2012 itemis AG.
- * 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:
- * Mark Broerkens - initial API and implementation
- ******************************************************************************/
-package org.eclipse.rmf.reqif10.provider;
-
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-
-
-@RunWith(Suite.class)
-@SuiteClasses({ AttributeDefinitionBooleanTest.class, AttributeDefinitionDateTest.class, AttributeDefinitionEnumerationTest.class, AttributeDefinitionIntegerTest.class, AttributeDefinitionRealTest.class, AttributeDefinitionStringTest.class, AttributeDefinitionXhtmlTest.class,
- AttributeValueBooleanTest.class, AttributeValueDateTest.class, AttributeValueEnumerationTest.class, AttributeValueBooleanTest.class, AttributeValueIntegerTest.class, AttributeValueRealTest.class, AttributeValueStringTest.class})
-//TODO: Add all other tests
-public class AllTests {
-
-
-
-}

Back to the top