blob: fd8342a1cba300202ccd0745a0d76ace2fce63da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import org.aspectj.testing.Tester;
public class Main {
public static void main(String[] args) {
Tester.expectEvent("run");
new Main().run();
Tester.checkAllEvents();
}
public void run(){}
}
|