Package org.jboss.test.aop.packagedotdot.callee

Examples of org.jboss.test.aop.packagedotdot.callee.Callee.method()


      NotConstructionInterceptor.intercepted = false;
      Callee callee = new Callee();
      assertFalse(NotConstructionInterceptor.intercepted);

      NotConstructionInterceptor.intercepted = false;
      callee.method();
      assertFalse(NotConstructionInterceptor.intercepted);

      NotConstructionInterceptor.intercepted = false;
      Caller caller = new Caller();
      assertTrue(NotConstructionInterceptor.intercepted);
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.