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