
public interface TestRunnerAdaptor
| Modifier and Type | Method and Description |
|---|---|
void |
after(Object testInstance,
Method testMethod,
LifecycleMethodExecutor executor)
Deactivate the TestInstance.
|
void |
afterClass(Class<?> testClass,
LifecycleMethodExecutor executor)
Deactivate the TestClass.
|
void |
afterSuite()
Deactivate the TestSuite.
|
void |
before(Object testInstance,
Method testMethod,
LifecycleMethodExecutor executor)
Activate a new TestInstance.
|
void |
beforeClass(Class<?> testClass,
LifecycleMethodExecutor executor)
Activate a new TestClass.
|
void |
beforeSuite()
Activate a new TestSuite.
|
<T extends TestLifecycleEvent> |
fireCustomLifecycle(T event)
Fire any custom Test Lifecycle event.
|
void |
shutdown()
Shutdown Arquillian cleanly.
|
TestResult |
test(TestMethodExecutor testMethodExecutor)
Activate a TestMethod execution.
|
void beforeSuite()
throws Exception
Exceptionvoid afterSuite()
throws Exception
Exceptionvoid beforeClass(Class<?> testClass, LifecycleMethodExecutor executor) throws Exception
testClass - executor - Exceptionvoid afterClass(Class<?> testClass, LifecycleMethodExecutor executor) throws Exception
testClass - executor - Exceptionvoid before(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception
testInstance - testMethod - executor - Exceptionvoid after(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception
testInstance - testMethod - executor - ExceptionTestResult test(TestMethodExecutor testMethodExecutor) throws Exception
testMethodExecutor - Exception<T extends TestLifecycleEvent> void fireCustomLifecycle(T event) throws Exception
event - Any eventExceptionvoid shutdown()
Copyright © 2015 JBoss by Red Hat. All rights reserved.