Package org.jboss.test.microcontainer.annotatedaop

Examples of org.jboss.test.microcontainer.annotatedaop.TestAspect


      pojoA.method();
      assertEquals(1, TestAspect.invoked);
      assertEquals(1, TestAspect.advice);
     
      //Now check that the scope was honoured
      TestAspect testA = TestAspect.last;
     
      TestAspect.reset();
      pojoA.anotherMethod();
      assertEquals(1, TestAspect.invoked);
      assertEquals(2, TestAspect.advice);
View Full Code Here

TOP

Related Classes of org.jboss.test.microcontainer.annotatedaop.TestAspect

Copyright © 2018 www.massapicom. 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.