Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2006-08-20 09:53:49 +0000
committerEike Stepper2006-08-20 09:53:49 +0000
commitadf73ce1a0f3461bcbab8229dd2277941ec84f9c (patch)
tree8467b367689f2c2b9079cd6c96df1f277f5877ca /plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1
parent54136e4fa8ea5039f0f42fcc933e993abfb1d576 (diff)
downloadcdo-adf73ce1a0f3461bcbab8229dd2277941ec84f9c.tar.gz
cdo-adf73ce1a0f3461bcbab8229dd2277941ec84f9c.tar.xz
cdo-adf73ce1a0f3461bcbab8229dd2277941ec84f9c.zip
[154389] attributes in super class returned by server, ignored by client
https://bugs.eclipse.org/bugs/show_bug.cgi?id=154389
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AbstractModel1Test.java9
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/BasicTest.java4
2 files changed, 11 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AbstractModel1Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AbstractModel1Test.java
index 45fd503093..e6c4f1b68f 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AbstractModel1Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/AbstractModel1Test.java
@@ -31,6 +31,15 @@ import java.util.Iterator;
import java.util.List;
+/**
+ * Base class for CDO tests based on selectable topologies and the TestModel1.
+ *
+ * After adding EClasses to TestModel1, don't forget to
+ * <ol>
+ * <li> regenerate the test model
+ * <li> remove the CDO mapping file
+ * <li> add a line to wipeDatabase()
+ */
public abstract class AbstractModel1Test extends AbstractTopologyTest
{
protected void assertChild(String name, EList nodes)
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/BasicTest.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/BasicTest.java
index 123bb4306c..3adc06440c 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/BasicTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/BasicTest.java
@@ -148,7 +148,7 @@ public class BasicTest extends AbstractModel1Test
}
}
- public void testGetResourceWithRef() throws Exception
+ public void testGetResourceViaRef() throws Exception
{
final String RESOURCE = "/test/res";
final String ROOT = "root";
@@ -301,7 +301,7 @@ public class BasicTest extends AbstractModel1Test
}
}
- public void testGetContainerWithRef() throws Exception
+ public void testGetContainerViaRef() throws Exception
{
final String RESOURCE = "/test/res";
final String ROOT = "root";

Back to the top