Package org.jboss.test.deployers.scope.support

Examples of org.jboss.test.deployers.scope.support.TestComponent2.doSomething()


         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());
      }
View Full Code Here


         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());
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.