Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-01-07 18:02:25 +0000
committerEike Stepper2011-01-07 18:02:25 +0000
commit85526250336e72dac2ebd742219905dbbb8a2e0c (patch)
treeffeb996948be607f01d00baa6775c818ccc03377 /plugins/org.eclipse.emf.cdo.tests.db/src
parent47704f34a4561db54ffc7d00e8d43220350f6157 (diff)
downloadcdo-85526250336e72dac2ebd742219905dbbb8a2e0c.tar.gz
cdo-85526250336e72dac2ebd742219905dbbb8a2e0c.tar.xz
cdo-85526250336e72dac2ebd742219905dbbb8a2e0c.zip
[333648] querying the XRef and ensureReferentialIntegrity=true with abstract EMF classes
https://bugs.eclipse.org/bugs/show_bug.cgi?id=333648
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.db/src')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DISABLE_XRefTest.java39
1 files changed, 23 insertions, 16 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DISABLE_XRefTest.java b/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DISABLE_XRefTest.java
index 228954d7a2..2477f2efd4 100644
--- a/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DISABLE_XRefTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests.db/src/org/eclipse/emf/cdo/tests/db/DISABLE_XRefTest.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Eike Stepper - initial API and implementation
*/
@@ -19,23 +19,30 @@ import org.eclipse.emf.cdo.tests.db.AllTestsDBH2.H2;
public class DISABLE_XRefTest extends XRefTest
{
@Override
- public void testCrossReferenceMultivalueEReferenceQuery() throws Exception
+ protected void doSetUp() throws Exception
{
+ super.doSetUp();
skipConfig(H2.ReusableFolder.RANGE_INSTANCE);
- super.testCrossReferenceMultivalueEReferenceQuery();
}
- @Override
- public void testXRefsToMany() throws Exception
- {
- skipConfig(H2.ReusableFolder.RANGE_INSTANCE);
- super.testXRefsToMany();
- }
-
- @Override
- public void testXRefsToOne() throws Exception
- {
- skipConfig(H2.ReusableFolder.RANGE_INSTANCE);
- super.testXRefsToOne();
- }
+ // @Override
+ // public void testCrossReferenceMultivalueEReferenceQuery() throws Exception
+ // {
+ // skipConfig(H2.ReusableFolder.RANGE_INSTANCE);
+ // super.testCrossReferenceMultivalueEReferenceQuery();
+ // }
+ //
+ // @Override
+ // public void testXRefsToMany() throws Exception
+ // {
+ // skipConfig(H2.ReusableFolder.RANGE_INSTANCE);
+ // super.testXRefsToMany();
+ // }
+ //
+ // @Override
+ // public void testXRefsToOne() throws Exception
+ // {
+ // skipConfig(H2.ReusableFolder.RANGE_INSTANCE);
+ // super.testXRefsToOne();
+ // }
}

Back to the top