Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/detach/AllTests.java')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/detach/AllTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/detach/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/detach/AllTests.java
index 081d54963..6d6bce6a4 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/detach/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/detach/AllTests.java
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: AllTests.java,v 1.3 2007/02/01 12:36:24 mtaal Exp $
+ * $Id: AllTests.java,v 1.4 2007/03/04 21:18:28 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.test.emf.detach;
@@ -27,17 +27,17 @@ import org.eclipse.emf.teneo.test.emf.detach.DetachEListAction;
* Test
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
*/
public class AllTests {
public static Test suite() {
TestSuite suite = new MultiCfgTestSuite("Test for org.eclipse.emf.teneo.hibernate.test.emf.detach", HibernateTestbed.instance()
.getConfigurations());
+ suite.addTestSuite(DetachFeatureMapTest.class);
suite.addTestSuite(DetachEListAction.class);
suite.addTestSuite(DetachTest.class);
- suite.addTestSuite(DetachFeatureMapTest.class);
return suite;
}
}

Back to the top