Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2007-03-29 22:13:41 +0000
committermtaal2007-03-29 22:13:41 +0000
commit8dc702a54f00fa599cb447383e4e8b28e13103c0 (patch)
tree3eac5437e9c05e21275d17f3c6b822aa99077851 /tests/org.eclipse.emf.teneo.jpox.test/src
parentb43f1d04dcadc25eadb245460432752f1eae4b2a (diff)
downloadorg.eclipse.emf.teneo-8dc702a54f00fa599cb447383e4e8b28e13103c0.tar.gz
org.eclipse.emf.teneo-8dc702a54f00fa599cb447383e4e8b28e13103c0.tar.xz
org.eclipse.emf.teneo-8dc702a54f00fa599cb447383e4e8b28e13103c0.zip
Solved nullability in case of single table and multiple inheritance
Diffstat (limited to 'tests/org.eclipse.emf.teneo.jpox.test/src')
-rw-r--r--tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/emf/sample/AllTests.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/emf/sample/AllTests.java b/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/emf/sample/AllTests.java
index e4706f64e..79b46444b 100644
--- a/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/emf/sample/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/emf/sample/AllTests.java
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: AllTests.java,v 1.20 2007/03/29 15:00:49 mtaal Exp $
+ * $Id: AllTests.java,v 1.21 2007/03/29 22:13:42 mtaal Exp $
*/
package org.eclipse.emf.teneo.jpox.test.emf.sample;
@@ -44,7 +44,7 @@ import extlibrary.ExtLibraryAction;
* All tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.20 $
+ * @version $Revision: 1.21 $
*/
public class AllTests {
@@ -52,7 +52,6 @@ public class AllTests {
TestSuite suite = new MultiCfgTestSuite("Test for org.eclipse.emf.teneo.test.samples", JPOXTestbed.instance()
.getConfigurations());
suite.addTestSuite(RentalResourceReferenceAction.class);
-/*
suite.addTestSuite(SchoolLibraryTest.class);
@@ -89,6 +88,6 @@ public class AllTests {
suite.addTestSuite(PrimerPOAction.class);
suite.addTestSuite(ForumAction.class);
suite.addTestSuite(CatalogTest.class);
-*/ return suite;
+ return suite;
}
}

Back to the top