aboutsummaryrefslogtreecommitdiffstats
path: root/tests/base/test110/Driver.java
blob: 5a9a717f988d47a5d90e99944d30463c33c40a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import pClass.Class;
import pAspect.Aspect;
import org.aspectj.testing.Tester;

public class Driver {
    public static void main(String[] args) { test(); }
    
    public static void test() {
	Class     f  = new Class();
	f.foo();
	Tester.check(Aspect.ranAdvice, "advice on class in different package");
    }
}