NotConstructionInterceptor.intercepted = false;
callee.method();
assertFalse(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
Caller caller = new Caller();
assertTrue(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
caller.method();
assertTrue(NotConstructionInterceptor.intercepted);
}