assertNotNull(dependency3);
InterceptorWithAnnotationDependency.intercepted = null;
SimpleBean bean = (SimpleBean) getBean(name);
assertNotNull(bean);
bean.someMethod();
assertNotNull(InterceptorWithNestedAnnotationDependency.intercepted1);
assertTrue(dependency1 == InterceptorWithNestedAnnotationDependency.intercepted1);
assertNotNull(InterceptorWithNestedAnnotationDependency.intercepted2);
assertTrue(dependency2 == InterceptorWithNestedAnnotationDependency.intercepted2);
assertNotNull(InterceptorWithNestedAnnotationDependency.intercepted3);