You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Driver.java 319B

1234567891011121314
  1. package p;
  2. import org.aspectj.testing.Tester;
  3. import other.Test;
  4. public class Driver {
  5. public static void main(String[] args) {
  6. Test t = new Test();
  7. t.foo();
  8. Tester.checkEqual(InnerTest.getCallCount(t), 1);
  9. t.foo();
  10. Tester.checkEqual(InnerTest.getCallCount(t), 2);
  11. }
  12. }