Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2007-04-17 15:49:55 +0000
committermtaal2007-04-17 15:49:55 +0000
commitabc589813b2bfc463de779dbb52d9ad28f4d6970 (patch)
tree5cdbd0f8402948d69335fce754a78eccfe06fa68
parent6af3f773363c05938c1a2e552a92a804f1717083 (diff)
downloadorg.eclipse.emf.teneo-abc589813b2bfc463de779dbb52d9ad28f4d6970.tar.gz
org.eclipse.emf.teneo-abc589813b2bfc463de779dbb52d9ad28f4d6970.tar.xz
org.eclipse.emf.teneo-abc589813b2bfc463de779dbb52d9ad28f4d6970.zip
Various changes, removed warnings, solved stringent EListWrapper checking
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/annotations/AllTests.java10
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java10
2 files changed, 11 insertions, 9 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 917ca6e1a..4387c901f 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
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: AllTests.java,v 1.35 2007/03/30 16:29:00 mtaal Exp $
+ * $Id: AllTests.java,v 1.36 2007/04/17 15:49:55 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.test.emf.annotations;
@@ -54,7 +54,7 @@ import org.eclipse.emf.teneo.test.emf.annotations.UniqueConstraintsAction;
* All tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.35 $
+ * @version $Revision: 1.36 $
*/
public class AllTests {
@@ -62,6 +62,10 @@ public class AllTests {
TestSuite suite = new MultiCfgTestSuite("Test for org.eclipse.emf.teneo.hibernate.test.emf.annotations",
HibernateTestbed.instance().getConfigurations());
+ suite.addTestSuite(SetAction.class);
+
+ suite.addTestSuite(UserTypeAction.class);
+
suite.addTestSuite(UserTypeAction.class);
suite.addTestSuite(EmbeddedAction.class);
@@ -76,8 +80,6 @@ public class AllTests {
suite.addTestSuite(CascadeNotallAction.class);
- suite.addTestSuite(SetAction.class);
-
suite.addTestSuite(AttributeOverridesAction.class);
suite.addTestSuite(InheritanceAnnotationAction.class);
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java
index d4f1f188f..86dd1a45a 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/emf/sample/AllTests.java
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: AllTests.java,v 1.38 2007/03/29 15:00:21 mtaal Exp $
+ * $Id: AllTests.java,v 1.39 2007/04/17 15:49:55 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.test.emf.sample;
@@ -49,7 +49,7 @@ import org.eclipse.emf.teneo.test.emf.sample.WorkFlowAction;
* All sample tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.38 $
+ * @version $Revision: 1.39 $
*/
public class AllTests {
@@ -61,13 +61,13 @@ public class AllTests {
// suite.addTestSuite(AgilAction.class);
- suite.addTestSuite(RentalMapAsClassAction.class);
-
- suite.addTestSuite(RentalResourceReferenceAction.class);
suite.addTestSuite(ProductAction.class);
suite.addTestSuite(LibraryAction.class);
+ suite.addTestSuite(RentalMapAsClassAction.class);
+
+ suite.addTestSuite(RentalResourceReferenceAction.class);
suite.addTestSuite(LibraryListAsBagAction.class);

Back to the top