summaryrefslogtreecommitdiffstats
path: root/tests/harness/classpathTest/Main.java
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-01-06 23:09:44 +0000
committerwisberg <wisberg>2003-01-06 23:09:44 +0000
commitfa63eb539504e91b3d070d5cf723346b9a86d0aa (patch)
tree80390181d48071851226277fed93460c0cc5109c /tests/harness/classpathTest/Main.java
parent47b257cb438cc74cf708d7edbb4beb11405402f6 (diff)
downloadaspectj-fa63eb539504e91b3d070d5cf723346b9a86d0aa.tar.gz
aspectj-fa63eb539504e91b3d070d5cf723346b9a86d0aa.zip
two harness test cases, for classpath (jar and dir)
and aspectpath. Binaries are checked in, as are binary sources and a build script. Test specifications are in tests/ajcHarnessTests.xml. (also checked in) with the build script
Diffstat (limited to 'tests/harness/classpathTest/Main.java')
-rw-r--r--tests/harness/classpathTest/Main.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/harness/classpathTest/Main.java b/tests/harness/classpathTest/Main.java
new file mode 100644
index 000000000..f2c1e2f91
--- /dev/null
+++ b/tests/harness/classpathTest/Main.java
@@ -0,0 +1,11 @@
+
+import org.aspectj.testing.Tester;
+import jar.required.Global;
+import classfile.required.ClassFile;
+
+public class Main {
+ public static void main (String[] args) {
+ Tester.check(ClassFile.isTrue(), "not ClassFile.isTrue()?");
+ Tester.check(Global.isTrue(), "not Global.isTrue()?");
+ }
+}