Package org.jboss.test.aop.packagedotdot.sub.nested

Examples of org.jboss.test.aop.packagedotdot.sub.nested.Nested.method()


      NotConstructionInterceptor.intercepted = false;
      pojo.method(1);
      assertFalse(NotConstructionInterceptor.intercepted);
     
      NotConstructionInterceptor.intercepted = false;
      nested.method(1);
      assertFalse(NotConstructionInterceptor.intercepted);

      //Matched by: *.packagedotdot..
      NotConstructionInterceptor.intercepted = false;
      pojoA.method(1, 1);
View Full Code Here


      NotConstructionInterceptor.intercepted = false;
      pojo.method(1, 1);
      assertFalse(NotConstructionInterceptor.intercepted);
     
      NotConstructionInterceptor.intercepted = false;
      nested.method(1, 1);
      assertFalse(NotConstructionInterceptor.intercepted);
     
      //Matched by: org.jboss.test.aop.packagedotdot.sub.*..
      NotConstructionInterceptor.intercepted = false;
      pojoA.method(1, 1, 1);
View Full Code Here

      NotConstructionInterceptor.intercepted = false;
      pojo.method(1, 1, 1);
      assertFalse(NotConstructionInterceptor.intercepted);
     
      NotConstructionInterceptor.intercepted = false;
      nested.method(1, 1, 1);
      assertTrue(NotConstructionInterceptor.intercepted);
   }
  
   public void testFields()
   {
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.