assertEquals(1, components.size());
DeploymentUnit component = components.get(0);
TestComponent2 proxy = component.getAttachment("proxy", TestComponent2.class);
TestClassAspect.classAnnotation = null;
proxy.doSomething();
TestClassAnnotation annotation = TestClassAspect.classAnnotation;
assertNotNull(annotation);
assertEquals("Instance", annotation.where());
}