Package org.jboss.test.microcontainer.beans

Examples of org.jboss.test.microcontainer.beans.PerClassAspect


      POJO pojo = (POJO)getBean("POJO1A");
      POJO2 pojo2 = (POJO2)getBean("POJO2");
     
      PerClassAspect.last = null;
      pojo.method();
      PerClassAspect a1 = PerClassAspect.last;
      assertNotNull(a1);
     
      PerClassAspect.last = null;
      pojo2.method();
      PerClassAspect a2 = PerClassAspect.last;
      assertNotNull(a2);
      assertNotSame(a1, a2);
     
      PerClassAspect.last = null;
      pojo.method(3);
      PerClassAspect a3 = PerClassAspect.last;
      assertNotNull(a3);
      assertSame(a1, a3);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.microcontainer.beans.PerClassAspect

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.