Package org.jboss.test.kernel.annotations.support

Examples of org.jboss.test.kernel.annotations.support.SubPropertyInheritanceTester


   }

   public void testInheritance() throws Throwable
   {
      install("somebean", Object.class);
      SubPropertyInheritanceTester tester = new SubPropertyInheritanceTester();
      runAnnotationsOnTarget(new SubPropertyInheritanceTester());
      assertNull(tester.getValue());
   }
View Full Code Here


      assertNull(tester.getValue());
   }

   protected void doTestAfterInstall(Object target)
   {
      SubPropertyInheritanceTester tester = (SubPropertyInheritanceTester)target;
      assertNotNull(tester.getValue());
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.kernel.annotations.support.SubPropertyInheritanceTester

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.