summaryrefslogtreecommitdiffstats
path: root/tests/new/test/Test.java
blob: efe358e26de5b179be5bc27820df2e2f65dfa13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test;

import org.aspectj.testing.*;

public class Test {
    public static void main(String[] args) {
        new Test().run();
        Tester.checkAllEvents();
    }
    public void run() {
        Tester.event("run");
    }
    static {
        Tester.expectEventsInString("before,after,run");
    }
}