Uses of Interface
org.jboss.arquillian.test.spi.LifecycleMethodExecutor
-
Packages that use LifecycleMethodExecutor Package Description org.jboss.arquillian.test.spi org.jboss.arquillian.test.spi.event.suite -
-
Uses of LifecycleMethodExecutor in org.jboss.arquillian.test.spi
Fields in org.jboss.arquillian.test.spi declared as LifecycleMethodExecutor Modifier and Type Field Description static LifecycleMethodExecutorLifecycleMethodExecutor. NO_OPMethods in org.jboss.arquillian.test.spi with parameters of type LifecycleMethodExecutor Modifier and Type Method Description voidTestRunnerAdaptor. after(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)Deactivate the TestInstance.
This will trigger the After event.voidTestRunnerAdaptor. afterClass(Class<?> testClass, LifecycleMethodExecutor executor)Deactivate the TestClass.
This will trigger the AfterClass event.voidTestRunnerAdaptor. before(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)Activate a new TestInstance.
This will trigger the Before event.voidTestRunnerAdaptor. beforeClass(Class<?> testClass, LifecycleMethodExecutor executor)Activate a new TestClass.
This will trigger the BeforeClass event. -
Uses of LifecycleMethodExecutor in org.jboss.arquillian.test.spi.event.suite
Methods in org.jboss.arquillian.test.spi.event.suite that return LifecycleMethodExecutor Modifier and Type Method Description LifecycleMethodExecutorClassLifecycleEvent. getExecutor()LifecycleMethodExecutorLifecycleEvent. getExecutor()Get the call back handler for this lifecycle method.LifecycleMethodExecutorTestLifecycleEvent. getExecutor()Constructors in org.jboss.arquillian.test.spi.event.suite with parameters of type LifecycleMethodExecutor Constructor Description After(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)AfterClass(Class<?> testClass, LifecycleMethodExecutor executor)AfterTestLifecycleEvent(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)Before(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)BeforeClass(Class<?> testClass, LifecycleMethodExecutor executor)BeforeTestLifecycleEvent(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)ClassLifecycleEvent(Class<?> testClass, LifecycleMethodExecutor executor)Create a new ClassLifecycleEvent for a specific Class.ClassLifecycleEvent(TestClass testClass, LifecycleMethodExecutor executor)Create a new ClassLifecycleEvent for a specific Class.TestLifecycleEvent(Object testInstance, Method testMethod, LifecycleMethodExecutor executor)Create a new TestLifecycleEvent for a specific testInstance executing a specific testMethod.
-