aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness/sourceroot/packageOne/Main.java
blob: c5204df1223fc89e87b81117049a0ff72396ee08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package packageOne;

import org.aspectj.testing.Tester;

public class Main {
    public static void main(String[] args) {
        Tester.expectEvent("go");
        for (int i = 0; i < args.length; i++) {
            Tester.expectEvent(args[i]);
        }
        go();
        Tester.checkAllEvents();
    }
    static void go() {
        Tester.event("go");
    }
}