//Bindings applied by subclass metadata
assertEquals(EXPECTED_ANNNOTATED_CHILD_BASEONLY_ADVISED, TestInterceptor.interceptions);
assertNull(TestInterceptor.invoked);
TestInterceptor.reset();
annotatedChild.childOnly();
assertEquals(EXPECTED_ANNNOTATED_CHILD_ONLY, TestInterceptor.interceptions);
assertNotNull(TestInterceptor.invoked);
assertEquals("childOnly", TestInterceptor.invoked.getName());
assertNotNull(TestInterceptor.classAnnotation);
assertTrue(TestInterceptor.classAnnotation instanceof org.jboss.test.microcontainer.support.Test);