public interface TestRunnerAdaptor
Need to be Thread-safe
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
Exception
void afterSuite() throws Exception
Exception
void beforeClass(Class<?> testClass, LifecycleMethodExecutor executor) throws Exception
Exception
void afterClass(Class<?> testClass, LifecycleMethodExecutor executor) throws Exception
Exception
void before(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception
Exception
void after(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception
Exception
TestResult test(TestMethodExecutor testMethodExecutor) throws Exception
Exception
<T extends TestLifecycleEvent> void fireCustomLifecycle(T event) throws Exception
event
- Any eventException
void shutdown()
Copyright © 2017 JBoss by Red Hat. All rights reserved.