aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/serialVersionUID/BeforeExecutionAdvice.aj
blob: 109cddc371d20a257304eb000973828457be436e (plain)
1
2
3
4
5
6
7
8
9
public aspect BeforeExecutionAdvice {
	
	pointcut run (Test test) :
		execution(public void run()) && this(test);
		
	before (Test test) : run (test) {
		System.out.println("? BeforeExecutionAdvice.run() test=" + test);
	}
}