}
public void testAll()
{
NotConstructionInterceptor.intercepted = false;
All all = new All();
assertTrue(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
all.field = 10;
assertTrue(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
int z = all.field;
assertTrue(NotConstructionInterceptor.intercepted);
NotConstructionInterceptor.intercepted = false;
all.method();
assertTrue(NotConstructionInterceptor.intercepted);
}