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

Examples of org.jboss.test.aop.packagedotdot.callee.Callee


   }
  
   public void testCallAndWithin()
   {
      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


public class Caller
{
   Callee callee;
   public Caller()
   {
      callee = new Callee();
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.aop.packagedotdot.callee.Callee

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.