summaryrefslogtreecommitdiffstats
path: root/tests/harness/classpathTest/Main.java
blob: f2c1e2f91102702b4891f99801600f6305df658e (plain)
1
2
3
4
5
6
7
8
9
10
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()?");
    } 
}