AnnotatedChild annotatedChild = (AnnotatedChild)getBean("AnnotatedChild");
assertTrue(annotatedChild instanceof Advised);
assertFalse(annotatedChild instanceof AspectManaged);
TestInterceptor.reset();
annotatedChild.baseOnly();
//Two bindings will apply to this method
assertEquals(EXPECTED_ANNNOTATED_CHILD_BASEONLY, TestInterceptor.interceptions);
assertNotNull(TestInterceptor.invoked);
assertEquals("baseOnly", TestInterceptor.invoked.getName());
assertNotNull(TestInterceptor.classAnnotation);