Package org.jboss.test.microcontainer.beans

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


   {
      POJO pojo = (POJO)getBean("Intercepted");
     
      TestAspectWithProperty.last = null;
      pojo.method();
      TestAspectWithProperty a1 = TestAspectWithProperty.last;
      assertNotNull(a1);
      assertEquals("PropertyA", a1.getSomeProperty());
     
      TestAspectWithProperty.last = null;
      pojo.method(2);
      TestAspectWithProperty a2 = TestAspectWithProperty.last;
      assertNotNull(a2);
      assertEquals("PropertyB", a2.getSomeProperty());
     
      assertNotSame(a1, a2);
   }
View Full Code Here

TOP

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

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.