Package org.jboss.test.aop.classpool.jbosscl.support.excluded.replacereferences.parent

Examples of org.jboss.test.aop.classpool.jbosscl.support.excluded.replacereferences.parent.Parent


      i = child.parent;
      assertCond(Invoked.invoked, "Invoked not called for Child.parent read");
      assertCond(i == 8, "Expected 5 for Child.child, was " + i);
     
      Invoked.invoked = false;
      Parent parent = new Parent();
      assertCond(Invoked.invoked, "Invoked not called for Parent constructor");
     
      Invoked.invoked = false;
      parent.parent = 5;
      assertCond(Invoked.invoked, "Invoked not called for Parent.parent write");
View Full Code Here

TOP

Related Classes of org.jboss.test.aop.classpool.jbosscl.support.excluded.replacereferences.parent.Parent

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.