Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_343471_Test.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_343471_Test.java176
1 files changed, 88 insertions, 88 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_343471_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_343471_Test.java
index a81fc3c780..579935515f 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_343471_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_343471_Test.java
@@ -1,88 +1,88 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * 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:
- * Caspar De Groot - initial API and implementation
- */
-package org.eclipse.emf.cdo.tests.bugzilla;
-
-import org.eclipse.emf.cdo.eresource.CDOResource;
-import org.eclipse.emf.cdo.session.CDOSession;
-import org.eclipse.emf.cdo.tests.AbstractCDOTest;
-import org.eclipse.emf.cdo.tests.config.IModelConfig;
-import org.eclipse.emf.cdo.tests.model1.Category;
-import org.eclipse.emf.cdo.transaction.CDOTransaction;
-import org.eclipse.emf.cdo.util.CommitException;
-
-import org.eclipse.emf.ecore.EObject;
-
-import java.util.HashSet;
-import java.util.Set;
-
-/**
- * @author Caspar De Groot
- */
-public class Bugzilla_343471_Test extends AbstractCDOTest
-{
- @Skips(IModelConfig.CAPABILITY_LEGACY)
- public void test() throws CommitException
- {
- CDOSession session = openSession();
- CDOTransaction tx = session.openTransaction();
-
- CDOResource resource1 = tx.createResource(getResourcePath("test1"));
- CDOResource resource2 = tx.createResource(getResourcePath("test2"));
-
- Category c1 = getModel1Factory().createCategory();
- resource1.getContents().add(c1);
-
- Category c2 = getModel1Factory().createCategory();
- c1.getCategories().add(c2);
-
- // c3 serves only to make the later commit partial
- Category c3 = getModel1Factory().createCategory();
- resource2.getContents().add(c3);
-
- tx.commit();
-
- msg("c1 = " + c1);
- msg("c2 = " + c2);
- msg("c3 = " + c3);
-
- msg("resource1 = " + resource1);
- msg("resource2 = " + resource2);
-
- msg("");
- msg("c1's container? " + c1.eContainer());
- msg("c2 contained in c1? " + c1.getCategories().contains(c2));
- msg("c2 contained in c1? " + (c2.eContainer() == c1));
- msg("c2's resource is r2? " + (c2.eResource() == resource2));
-
- // Move c2 from resource1 to resource2
- resource2.getContents().add(c2);
-
- // assertSame(c1, c2.eContainer());
-
- msg("");
- msg("c1's container? " + c1.eContainer());
- msg("c2 contained in c1? " + c1.getCategories().contains(c2));
- msg("c2 contained in c1? " + (c2.eContainer() == c1));
- msg("c2's resource is r2? " + (c2.eResource() == resource2));
-
- // Make c3 dirty so that we can create a partial commit
- c3.setName("X");
-
- Set<EObject> committables = new HashSet<EObject>();
- committables.add(c2);
- committables.add(resource2);
-
- tx.setCommittables(committables);
- tx.commit();
-
- session.close();
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * 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:
+ * Caspar De Groot - initial API and implementation
+ */
+package org.eclipse.emf.cdo.tests.bugzilla;
+
+import org.eclipse.emf.cdo.eresource.CDOResource;
+import org.eclipse.emf.cdo.session.CDOSession;
+import org.eclipse.emf.cdo.tests.AbstractCDOTest;
+import org.eclipse.emf.cdo.tests.config.IModelConfig;
+import org.eclipse.emf.cdo.tests.model1.Category;
+import org.eclipse.emf.cdo.transaction.CDOTransaction;
+import org.eclipse.emf.cdo.util.CommitException;
+
+import org.eclipse.emf.ecore.EObject;
+
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * @author Caspar De Groot
+ */
+public class Bugzilla_343471_Test extends AbstractCDOTest
+{
+ @Skips(IModelConfig.CAPABILITY_LEGACY)
+ public void test() throws CommitException
+ {
+ CDOSession session = openSession();
+ CDOTransaction tx = session.openTransaction();
+
+ CDOResource resource1 = tx.createResource(getResourcePath("test1"));
+ CDOResource resource2 = tx.createResource(getResourcePath("test2"));
+
+ Category c1 = getModel1Factory().createCategory();
+ resource1.getContents().add(c1);
+
+ Category c2 = getModel1Factory().createCategory();
+ c1.getCategories().add(c2);
+
+ // c3 serves only to make the later commit partial
+ Category c3 = getModel1Factory().createCategory();
+ resource2.getContents().add(c3);
+
+ tx.commit();
+
+ msg("c1 = " + c1);
+ msg("c2 = " + c2);
+ msg("c3 = " + c3);
+
+ msg("resource1 = " + resource1);
+ msg("resource2 = " + resource2);
+
+ msg("");
+ msg("c1's container? " + c1.eContainer());
+ msg("c2 contained in c1? " + c1.getCategories().contains(c2));
+ msg("c2 contained in c1? " + (c2.eContainer() == c1));
+ msg("c2's resource is r2? " + (c2.eResource() == resource2));
+
+ // Move c2 from resource1 to resource2
+ resource2.getContents().add(c2);
+
+ // assertSame(c1, c2.eContainer());
+
+ msg("");
+ msg("c1's container? " + c1.eContainer());
+ msg("c2 contained in c1? " + c1.getCategories().contains(c2));
+ msg("c2 contained in c1? " + (c2.eContainer() == c1));
+ msg("c2's resource is r2? " + (c2.eResource() == resource2));
+
+ // Make c3 dirty so that we can create a partial commit
+ c3.setName("X");
+
+ Set<EObject> committables = new HashSet<EObject>();
+ committables.add(c2);
+ committables.add(resource2);
+
+ tx.setCommittables(committables);
+ tx.commit();
+
+ session.close();
+ }
+}

Back to the top