org.aspectj/tests/new/PR535.java

39 lines
737 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
import org.aspectj.testing.Tester;
/** @testcase PR#535 */
public class PR535 {
public static void main(String[] args) {
Tester.expectEvent("In bar()");
Tester.expectEvent("advice");
Tester.expectEvent("In foo()");
new C().foo();
Tester.checkAllEvents();
}
}
class C {
public void foo() {
Tester.event("In foo()");
bar();
}
public void bar() {
Tester.event("In bar()");
}
}
aspect A {
pointcut outside(): !cflow(within(A));
void around(C c):
cflow(execution(public void C.foo())) &&
target(c) &&
execution(public void C.bar()) &&
outside() {
Tester.event("advice");
proceed(c);
}
}