aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testsrc/AjdeModuleTests.java
diff options
context:
space:
mode:
authorwisberg <wisberg>2002-12-16 17:58:19 +0000
committerwisberg <wisberg>2002-12-16 17:58:19 +0000
commitd842c4f1139629c1f062b74ba818d233b2c31043 (patch)
tree842d3871620bc0eb60edcd95e55804d67e0f61fa /ajde/testsrc/AjdeModuleTests.java
parent3ce247199704eae6b2c92c6e38c69584e3250c52 (diff)
downloadaspectj-d842c4f1139629c1f062b74ba818d233b2c31043.tar.gz
aspectj-d842c4f1139629c1f062b74ba818d233b2c31043.zip
initial version
Diffstat (limited to 'ajde/testsrc/AjdeModuleTests.java')
-rw-r--r--ajde/testsrc/AjdeModuleTests.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/ajde/testsrc/AjdeModuleTests.java b/ajde/testsrc/AjdeModuleTests.java
new file mode 100644
index 000000000..c26330ed9
--- /dev/null
+++ b/ajde/testsrc/AjdeModuleTests.java
@@ -0,0 +1,31 @@
+/* *******************************************************************
+ * Copyright (c) 1999-2001 Xerox Corporation,
+ * 2002 Palo Alto Research Center, Incorporated (PARC).
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * Xerox/PARC initial implementation
+ * ******************************************************************/
+
+
+// default package
+
+import junit.framework.*;
+
+public class AjdeModuleTests extends TestCase {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(AjdeModuleTests.class.getName());
+ suite.addTest(org.aspectj.ajde.AjdeTests.suite());
+ suite.addTest(org.aspectj.ajde.internal.AjdeInternalTests.suite());
+ suite.addTest(org.aspectj.ajde.ui.AjdeUiTests.suite());
+ return suite;
+ }
+
+ public AjdeModuleTests(String name) { super(name); }
+
+}