Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/elist/tests/AllTests.java')
-rw-r--r--tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/elist/tests/AllTests.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/elist/tests/AllTests.java b/tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/elist/tests/AllTests.java
new file mode 100644
index 000000000..0bad9d38a
--- /dev/null
+++ b/tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/elist/tests/AllTests.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2008 Oracle and Geensys.
+ * 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:
+ * Oracle and Geensys - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.emf.teneo.eclipselink.elist.tests;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+
+public class AllTests {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(
+ "org.eclipse.emf.teneo.eclipselink.elist.test");
+ //$JUnit-BEGIN$
+ suite.addTestSuite(IndirectEListTest.class);
+ //$JUnit-END$
+ return suite;
+ }
+
+}

Back to the top