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
Exception
void afterSuite() throws Exception
Exception
void beforeClass(Class<?> testClass, LifecycleMethodExecutor executor) throws Exception
testClass
- executor
- Exception
void afterClass(Class<?> testClass, LifecycleMethodExecutor executor) throws Exception
testClass
- executor
- Exception
void before(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception
testInstance
- testMethod
- executor
- Exception
void after(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception
testInstance
- testMethod
- executor
- Exception
TestResult test(TestMethodExecutor testMethodExecutor) throws Exception
testMethodExecutor
- Exception
void shutdown()
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.