assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
Nested nested = new Nested(1);
assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
//Matched by: *.packagedotdot..
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
pojoA = new POJOA(1, 1);
assertTrue(ConstructionInterceptor.intercepted);
assertTrue(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
pojoB = new POJOB(1, 1);
assertTrue(ConstructionInterceptor.intercepted);
assertTrue(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
pojo = new POJO(1, 1);
assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
nested = new Nested(1, 1);
assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
//Matched by: org.jboss.test.aop.packagedotdot.sub.*..
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
pojoA = new POJOA(1, 1, 1);
assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
pojoB = new POJOB(1, 1, 1);
assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
pojo = new POJO(1, 1, 1);
assertFalse(ConstructionInterceptor.intercepted);
assertFalse(NotConstructionInterceptor.intercepted);
ConstructionInterceptor.intercepted = false;
NotConstructionInterceptor.intercepted = false;
nested = new Nested(1, 1, 1);
assertTrue(ConstructionInterceptor.intercepted);
assertTrue(NotConstructionInterceptor.intercepted);
}