}
public void testCallAndWithin()
{
NotConstructionInterceptor.intercepted = false;
Callee callee = new Callee();
assertFalse(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
callee.method();
assertFalse(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
Caller caller = new Caller();
assertTrue(NotConstructionInterceptor.intercepted);