Package org.jboss.test.microcontainer.annotatedaop

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


      SimplePOJO pojoA = (SimplePOJO)getBean("BeanA");
      pojoA.method();
      assertEquals(1, TestInterceptor.invoked);
     
      //Now check that the scope was honoured
      TestInterceptor testA = TestInterceptor.last;
      TestInterceptor.reset();
      pojoA.method();
      assertEquals(1, TestInterceptor.invoked);
      assertSame(testA, TestInterceptor.last);
     
View Full Code Here

TOP

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

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.