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/tests/AllTests.java')
-rw-r--r--tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/tests/AllTests.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/tests/AllTests.java b/tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/tests/AllTests.java
new file mode 100644
index 000000000..7e601a6de
--- /dev/null
+++ b/tests/org.eclipse.emf.teneo.eclipselink.tests/src/org/eclipse/emf/teneo/eclipselink/tests/AllTests.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * 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.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.tests");
+ // TODO: enable EMap support
+ //suite.addTest(org.eclipse.emf.teneo.eclipselink.emap.tests.AllTests.suite());
+ //$JUnit-BEGIN$
+ suite.addTest(org.eclipse.emf.teneo.eclipselink.elist.tests.AllTests.suite());
+ //$JUnit-END$
+ return suite;
+ }
+
+}

Back to the top