Examples of SubLifecycleAnnotationTester


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

      return suite(LifecycleAnnotationInheritanceTestCase.class);
   }

   public void testInheritance() throws Throwable
   {
      SubLifecycleAnnotationTester tester = new SubLifecycleAnnotationTester();
      runAnnotationsOnTarget(tester);
      Object[] value = tester.getValue();
      assertEquals(new Object[]{null, null, "dewdew", "dew"}, value);
   }
View Full Code Here

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

      assertEquals(new Object[]{null, null, "dewdew", "dew"}, value);
   }

   protected void doTestAfterInstall(Object target)
   {
      SubLifecycleAnnotationTester tester = (SubLifecycleAnnotationTester)target;
      Object[] value = tester.getValue();
      assertEquals(new Object[]{"dew", "dewdew", null, null}, value);
   }
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.