Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2006-08-23 20:34:35 +0000
committerEike Stepper2006-08-23 20:34:35 +0000
commitc14ba23d13454e7f765199f58993b550c46bf0ce (patch)
treeb6104bc585d0a84b5e14099d31cb52a078f81275 /plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java
parent6c7f744d1e78c56e9a623394d90bdea12c1415c6 (diff)
downloadcdo-c14ba23d13454e7f765199f58993b550c46bf0ce.tar.gz
cdo-c14ba23d13454e7f765199f58993b550c46bf0ce.tar.xz
cdo-c14ba23d13454e7f765199f58993b550c46bf0ce.zip
https://bugs.eclipse.org/bugs/show_bug.cgi?id=151560
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java
index a4a355e026..ce132bf2d2 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AllModel1Tests.java
@@ -21,11 +21,12 @@ public class AllModel1Tests
{
TestSuite suite = new TestSuite("Test for org.eclipse.emf.cdo.tests.model1");
suite.addTestSuite(BasicTest.class);
- suite.addTestSuite(Bugzilla154389Test.class);
- suite.addTestSuite(ExtentTest.class);
+ suite.addTestSuite(AdapterTest.class);
+ suite.addTestSuite(SerializationTest.class);
suite.addTestSuite(NotificationTest.class);
+ suite.addTestSuite(ExtentTest.class);
suite.addTestSuite(OCLTest.class);
- suite.addTestSuite(SerializationTest.class);
+ suite.addTestSuite(Bugzilla154389Test.class);
return suite;
}
}

Back to the top