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

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


   }

   public void testCleanupOnly() throws Throwable
   {
      reset();
      runAnnotationsOnTarget(new TestCleanupOnlyBean());
      assertFalse(TestCleanupPlugin.INSTANCE.isApplied());
      assertFalse(TestCleanupPlugin.INSTANCE.isCleaned());
      assertFalse(TestCleanupOnlyPlugin.INSTANCE.isApplied());
      assertTrue(TestCleanupOnlyPlugin.INSTANCE.isCleaned());
      assertFalse(TestApplyOnlyPlugin.INSTANCE.isApplied());
View Full Code Here

TOP

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

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.