Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2009-02-25 20:08:55 +0000
committermtaal2009-02-25 20:08:55 +0000
commit54be30f737d0def58fbeb03ec4eefe17ab3a7f50 (patch)
treec3ad9acfea9431a9bd4d30370e453ee11f9191c7 /tests/org.eclipse.emf.teneo.hibernate.test/src
parent19eb678bf9aa157f6dc22dcac29bb662e0e24895 (diff)
downloadorg.eclipse.emf.teneo-54be30f737d0def58fbeb03ec4eefe17ab3a7f50.tar.gz
org.eclipse.emf.teneo-54be30f737d0def58fbeb03ec4eefe17ab3a7f50.tar.xz
org.eclipse.emf.teneo-54be30f737d0def58fbeb03ec4eefe17ab3a7f50.zip
Solved issues which showed up with mysql 5.1.6
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/emf/annotations/AllTests.java6
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/schemaconstructs/AllTests.java17
2 files changed, 12 insertions, 11 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/annotations/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/annotations/AllTests.java
index 074a8b834..f3bdab318 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/annotations/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/annotations/AllTests.java
@@ -55,7 +55,7 @@ import org.eclipse.emf.teneo.test.emf.annotations.VariousAction;
* All tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.74 $
+ * @version $Revision: 1.75 $
*/
public class AllTests {
@@ -63,6 +63,8 @@ public class AllTests {
TestSuite suite = new MultiCfgTestSuite(
"Test for org.eclipse.emf.teneo.hibernate.test.emf.annotations",
HibernateTestbed.instance().getConfigurations());
+
+ suite.addTestSuite(HbIdAction.class);
suite.addTestSuite(ExternalAction.class);
suite.addTestSuite(JoinColumnsTest.class);
suite.addTestSuite(SecondarytableHibernateAction.class);
@@ -99,8 +101,6 @@ public class AllTests {
suite.addTestSuite(ManyToManyAction.class);
- suite.addTestSuite(HbIdAction.class);
-
suite.addTestSuite(EntityAction.class);
suite.addTestSuite(ExtraLazyAction.class);
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/schemaconstructs/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/schemaconstructs/AllTests.java
index ad84e0ccc..2e3d57362 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/schemaconstructs/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/schemaconstructs/AllTests.java
@@ -34,21 +34,21 @@ import org.eclipse.emf.teneo.test.emf.schemaconstructs.SubstitutionzvonAction;
* All tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.22 $
+ * @version $Revision: 1.23 $
*/
public class AllTests {
public static Test suite() {
- TestSuite suite =
- new MultiCfgTestSuite("Test for org.eclipse.emf.teneo.hibernate.test.emf.schemaconstructs",
- HibernateTestbed.instance().getConfigurations());
+ TestSuite suite = new MultiCfgTestSuite(
+ "Test for org.eclipse.emf.teneo.hibernate.test.emf.schemaconstructs",
+ HibernateTestbed.instance().getConfigurations());
+
+ suite.addTestSuite(SimpleTypeAction.class);
suite.addTestSuite(DateTimeAction.class);
suite.addTestSuite(EMapAction.class);
suite.addTestSuite(EMapAsListAction.class);
- suite.addTestSuite(SimpleTypeAction.class);
-
suite.addTestSuite(DurationAction.class);
suite.addTestSuite(QNameAction.class);
@@ -68,8 +68,9 @@ public class AllTests {
/*
* // The anytype test is not yet supported by Hibernate //
- * suite.addTestSuite(AnyTypeAction.class); // Listunion types are not yet supported by
- * hibernate // suite.addTestSuite(ListUnionAction.class);
+ * suite.addTestSuite(AnyTypeAction.class); // Listunion types are not
+ * yet supported by hibernate //
+ * suite.addTestSuite(ListUnionAction.class);
*/
// $JUnit-END$
return suite;

Back to the top