Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormtaal2008-10-27 20:43:20 +0000
committermtaal2008-10-27 20:43:20 +0000
commitd1ae53b2cfa57a7d2a00cbe0a4de7282683db39b (patch)
tree8f528b90c0295296ff77f3edac0d2c1a321bebcb /tests
parentd0f5eda09e1c0bccfbbbfc994b5253a10b1859b2 (diff)
downloadorg.eclipse.emf.teneo-d1ae53b2cfa57a7d2a00cbe0a4de7282683db39b.tar.gz
org.eclipse.emf.teneo-d1ae53b2cfa57a7d2a00cbe0a4de7282683db39b.tar.xz
org.eclipse.emf.teneo-d1ae53b2cfa57a7d2a00cbe0a4de7282683db39b.zip
Updated
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/AllTests.java6
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/Bz245167Action.java3
2 files changed, 6 insertions, 3 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/AllTests.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/AllTests.java
index d7fb1521b..136c5fdab 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/AllTests.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/AllTests.java
@@ -43,7 +43,7 @@ import org.eclipse.emf.teneo.test.issues.TopClassesAction;
* All tests
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.38 $
+ * @version $Revision: 1.39 $
*/
public class AllTests {
@@ -51,6 +51,9 @@ public class AllTests {
TestSuite suite =
new MultiCfgTestSuite("Test for org.eclipse.emf.teneo.hibernate.test.issues", HibernateTestbed
.instance().getConfigurations());
+
+ suite.addTestSuite(Bz245167Action.class);
+
suite.addTestSuite(BZ249246Action.class);
suite.addTestSuite(BZ249440Action.class);
suite.addTestSuite(Bz245634Action.class);
@@ -65,7 +68,6 @@ public class AllTests {
suite.addTestSuite(BZ237361Action.class);
suite.addTestSuite(Bz243024Action.class);
- suite.addTestSuite(Bz245167Action.class);
suite.addTestSuite(Bz242995Action.class);
suite.addTestSuite(BZ237994Action.class);
suite.addTestSuite(BZ237790Action.class);
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/Bz245167Action.java b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/Bz245167Action.java
index 0286d0256..307bcef0e 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/Bz245167Action.java
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/src/org/eclipse/emf/teneo/hibernate/test/issues/Bz245167Action.java
@@ -21,7 +21,7 @@ import org.eclipse.emf.teneo.test.stores.TestStore;
/**
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class Bz245167Action extends AbstractTestAction {
@@ -62,6 +62,7 @@ public class Bz245167Action extends AbstractTestAction {
// note that the statPart arraylist needs to be used after the above assertEquals
// otherwise the compiler will optimize them away
+ ich.dumpID();
for (Library lib : statPart) {
assertTrue(ich.getID(lib) != null);
assertTrue(ich.getVersion(lib) != null);

Back to the top