public interface TestRunnerAdaptor
| Modifier and Type | Method and Description |
|---|---|
void |
after(Object testInstance,
Method testMethod,
LifecycleMethodExecutor executor)
Deactivate the TestInstance.
This will trigger the After event. |
void |
afterClass(Class<?> testClass,
LifecycleMethodExecutor executor)
Deactivate the TestClass.
This will trigger the AfterClass event. |
void |
afterSuite()
Deactivate the TestSuite.
This will trigger the AfterSuite event. |
void |
before(Object testInstance,
Method testMethod,
LifecycleMethodExecutor executor)
Activate a new TestInstance.
This will trigger the Before event. |
void |
beforeClass(Class<?> testClass,
LifecycleMethodExecutor executor)
Activate a new TestClass.
This will trigger the BeforeClass event. |
void |
beforeSuite()
Activate a new TestSuite.
This will trigger the BeforeSuite event. |
void |
shutdown()
Shutdown Arquillian cleanly.
|
TestResult |
test(TestMethodExecutor testMethodExecutor)
Activate a TestMethod execution.
This will trigger the Test event. |
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 - Exceptionvoid shutdown()
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.