Uses of Interface
org.jboss.arquillian.test.spi.LifecycleMethodExecutor
Packages that use LifecycleMethodExecutor
-
Uses of LifecycleMethodExecutor in org.jboss.arquillian.test.spi
Fields in org.jboss.arquillian.test.spi declared as LifecycleMethodExecutorModifier and TypeFieldDescriptionstatic final LifecycleMethodExecutorLifecycleMethodExecutor.NO_OPMethods in org.jboss.arquillian.test.spi with parameters of type LifecycleMethodExecutorModifier and TypeMethodDescriptionvoidTestRunnerAdaptor.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 LifecycleMethodExecutorModifier and TypeMethodDescriptionClassLifecycleEvent.getExecutor()LifecycleEvent.getExecutor()Get the call back handler for this lifecycle method.TestLifecycleEvent.getExecutor()Constructors in org.jboss.arquillian.test.spi.event.suite with parameters of type LifecycleMethodExecutorModifierConstructorDescriptionAfter(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.