Child proxiedChild = (Child)getBean("ProxiedChild");
assertTrue(proxiedChild instanceof Advised);
assertTrue(proxiedChild instanceof AspectManaged);
TestInterceptor.reset();
proxiedChild.baseOnly();
//Two bindings will apply to this method
assertEquals(EXPECTED_ANNNOTATED_CHILD_BASEOVERRIDDEN, TestInterceptor.interceptions);
assertNotNull(TestInterceptor.invoked);
assertEquals("baseOnly", TestInterceptor.invoked.getName());
assertNotNull(TestInterceptor.classAnnotation);