Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2009-02-25 11:19:55 +0000
committermtaal2009-02-25 11:19:55 +0000
commit20f606c4fcdeabdf1d58a6baaea3ae9aae6cf40c (patch)
treea1238a655a51d4ab06bf2fd1a6da18f3659458bb /tests/org.eclipse.emf.teneo.hibernate.test/src
parent90359fa2ccb7fb1b70015f282e4ed722437fe211 (diff)
downloadorg.eclipse.emf.teneo-20f606c4fcdeabdf1d58a6baaea3ae9aae6cf40c.tar.gz
org.eclipse.emf.teneo-20f606c4fcdeabdf1d58a6baaea3ae9aae6cf40c.tar.xz
org.eclipse.emf.teneo-20f606c4fcdeabdf1d58a6baaea3ae9aae6cf40c.zip
Updated
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test/src')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/AllTests.java28
1 files changed, 19 insertions, 9 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/AllTests.java
index c648dfd49..1ee425d71 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/AllTests.java
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: AllTests.java,v 1.7 2008/03/17 16:13:46 mtaal Exp $
+ * $Id: AllTests.java,v 1.8 2009/02/25 11:19:55 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.test;
@@ -23,19 +23,29 @@ import junit.framework.TestSuite;
* Runs all hibernate tests.
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
*/
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite("All tests for hibernate");
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.sample.AllTests.suite());
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.detach.AllTests.suite());
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.annotations.AllTests.suite());
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.elist.AllTests.suite());
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.relation.AllTests.suite());
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.schemaconstructs.AllTests.suite());
- suite.addTest(org.eclipse.emf.teneo.hibernate.test.issues.AllTests.suite());
+ suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.sample.AllTests
+ .suite());
+ suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.detach.AllTests
+ .suite());
+ suite
+ .addTest(org.eclipse.emf.teneo.hibernate.test.emf.annotations.AllTests
+ .suite());
+ suite.addTest(org.eclipse.emf.teneo.hibernate.test.emf.elist.AllTests
+ .suite());
+ suite
+ .addTest(org.eclipse.emf.teneo.hibernate.test.emf.relation.AllTests
+ .suite());
+ suite
+ .addTest(org.eclipse.emf.teneo.hibernate.test.emf.schemaconstructs.AllTests
+ .suite());
+ suite.addTest(org.eclipse.emf.teneo.hibernate.test.issues.AllTests
+ .suite());
return suite;
}
}

Back to the top