aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/innerInterfaces/p/Driver.java
blob: 5f5e7d72a7cb73791c470d46694df91e8aa09ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package p;

import org.aspectj.testing.Tester;
import other.Test;

public class Driver {
    public static void main(String[] args) {
        Test t = new Test();
        t.foo();
        Tester.checkEqual(InnerTest.getCallCount(t), 1);
        t.foo();
        Tester.checkEqual(InnerTest.getCallCount(t), 2);
    }
}