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_322804_Test.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_322804_Test.java86
1 files changed, 43 insertions, 43 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_322804_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_322804_Test.java
index c94b13de35..3f5e69c6da 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_322804_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_322804_Test.java
@@ -1,43 +1,43 @@
-/*
- * 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:
- * Eike Stepper - 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.model5.GenListOfIntArray;
-import org.eclipse.emf.cdo.transaction.CDOTransaction;
-
-/**
- * Bug 322804 - ClassCastException adding an object to an EList with objects of a custom data type
- *
- * @author Eike Stepper
- */
-public class Bugzilla_322804_Test extends AbstractCDOTest
-{
- public void testAddElementToCustomTypedList() throws Exception
- {
- CDOSession session = openSession();
- CDOTransaction transaction = session.openTransaction();
- CDOResource resource = transaction.createResource(getResourcePath("/r1"));
-
- msg("Fill and commit a resource");
- GenListOfIntArray object = getModel5Factory().createGenListOfIntArray();
- resource.getContents().add(object);
- transaction.commit();
-
- msg("Add int[] elements");
- object.getElements().add(new int[] { 1, 2, 3, 4, 5 });
- object.getElements().add(new int[] { 10, 20, 30, 40, 50 });
- transaction.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:
+ * Eike Stepper - 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.model5.GenListOfIntArray;
+import org.eclipse.emf.cdo.transaction.CDOTransaction;
+
+/**
+ * Bug 322804 - ClassCastException adding an object to an EList with objects of a custom data type
+ *
+ * @author Eike Stepper
+ */
+public class Bugzilla_322804_Test extends AbstractCDOTest
+{
+ public void testAddElementToCustomTypedList() throws Exception
+ {
+ CDOSession session = openSession();
+ CDOTransaction transaction = session.openTransaction();
+ CDOResource resource = transaction.createResource(getResourcePath("/r1"));
+
+ msg("Fill and commit a resource");
+ GenListOfIntArray object = getModel5Factory().createGenListOfIntArray();
+ resource.getContents().add(object);
+ transaction.commit();
+
+ msg("Add int[] elements");
+ object.getElements().add(new int[] { 1, 2, 3, 4, 5 });
+ object.getElements().add(new int[] { 10, 20, 30, 40, 50 });
+ transaction.commit();
+ session.close();
+ }
+}

Back to the top