]> source.dussan.org Git - aspectj.git/commitdiff
test placeholder
authorwisberg <wisberg>
Fri, 11 Feb 2005 05:31:23 +0000 (05:31 +0000)
committerwisberg <wisberg>
Fri, 11 Feb 2005 05:31:23 +0000 (05:31 +0000)
aspectj5rt/.classpath
aspectj5rt/testsrc/Aspectj5rtModuleTests.java [new file with mode: 0644]

index 491bfa2f05e1e42905d66f287ac7f3db9bc4f7c8..81b85bea2d2f2cd7756dd7bc22e26f5daa4eb9ff 100644 (file)
@@ -4,5 +4,6 @@
        <classpathentry sourcepath="/JRE15_SRC" kind="var" path="JRE15_LIB"/>
        <classpathentry kind="src" path="/runtime"/>
        <classpathentry kind="src" path="testsrc"/>
+       <classpathentry sourcepath="/lib/junit/junit-src.jar" kind="lib" path="/lib/junit/junit.jar"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>
diff --git a/aspectj5rt/testsrc/Aspectj5rtModuleTests.java b/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
new file mode 100644 (file)
index 0000000..065df54
--- /dev/null
@@ -0,0 +1,25 @@
+/* *******************************************************************
+ * 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.*;
+
+public class Aspectj5rtModuleTests extends TestCase {
+
+    public static Test suite() { 
+        TestSuite suite = new TestSuite("Aspectj5rt module tests");
+        return suite;
+    }
+
+
+}