aboutsummaryrefslogtreecommitdiffstats
path: root/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-05-11 09:18:33 +0000
committerwisberg <wisberg>2005-05-11 09:18:33 +0000
commita2545d0e25640e03d2e97a6229ffe9f031617f9f (patch)
treebd673df3ca2a7fad3639af32adce81c9d09e123c /aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java
parentc479b60b4987b55a9ba84bd472dc0e1119942ae4 (diff)
downloadaspectj-a2545d0e25640e03d2e97a6229ffe9f031617f9f.tar.gz
aspectj-a2545d0e25640e03d2e97a6229ffe9f031617f9f.zip
testsrc -> java5-testsrc, placeholders for pre-1.5 build
Diffstat (limited to 'aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java')
-rw-r--r--aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java b/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java
new file mode 100644
index 000000000..b0ab7d1fe
--- /dev/null
+++ b/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java
@@ -0,0 +1,32 @@
+/* *******************************************************************
+ * Copyright (c) 2005 Contributors.
+ * 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://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wes Isberg initial implementation
+ * ******************************************************************/
+
+// default package
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+import org.aspectj.internal.lang.reflect.AjTypeTests;
+import org.aspectj.internal.lang.reflect.AjTypeTestsWithAspects;
+
+public class Aspectj5rt15ModuleTests extends TestCase {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite("Aspectj5rt module tests");
+ suite.addTestSuite(AjTypeTests.class);
+ suite.addTestSuite(AjTypeTestsWithAspects.class);
+ return suite;
+ }
+
+
+}