callee.adviseWithBefore();
assertEquals("adviseWithBefore ", LOG);
((Advisable) callee).aw$addAdvice(
"* test.intercept.call.Callee.adviseWithBefore(..)",
new BeforeAdvice() {
public void invoke(JoinPoint jp) throws Throwable {
InterceptTest.log("before ");
}
}
);