Modifier and Type | Class and Description |
---|---|
private static class |
Arquillian.StatementLifecycleExecutor |
Constructor and Description |
---|
AfterRules(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
BeforeRules(java.lang.Object testInstance,
org.junit.runners.model.TestClass testClassInstance,
java.lang.Object statementInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
Modifier and Type | Method and Description |
---|---|
void |
EventTestRunnerAdaptor.after(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
void |
EventTestRunnerAdaptor.afterClass(java.lang.Class<?> testClass,
LifecycleMethodExecutor executor) |
void |
EventTestRunnerAdaptor.before(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
void |
EventTestRunnerAdaptor.beforeClass(java.lang.Class<?> testClass,
LifecycleMethodExecutor executor) |
Modifier and Type | Field and Description |
---|---|
static LifecycleMethodExecutor |
LifecycleMethodExecutor.NO_OP |
Modifier and Type | Method and Description |
---|---|
void |
TestRunnerAdaptor.after(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor)
Deactivate the TestInstance.
This will trigger the After event. |
void |
TestRunnerAdaptor.afterClass(java.lang.Class<?> testClass,
LifecycleMethodExecutor executor)
Deactivate the TestClass.
This will trigger the AfterClass event. |
void |
TestRunnerAdaptor.before(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor)
Activate a new TestInstance.
This will trigger the Before event. |
void |
TestRunnerAdaptor.beforeClass(java.lang.Class<?> testClass,
LifecycleMethodExecutor executor)
Activate a new TestClass.
This will trigger the BeforeClass event. |
Modifier and Type | Field and Description |
---|---|
private LifecycleMethodExecutor |
TestLifecycleEvent.executor |
private LifecycleMethodExecutor |
ClassLifecycleEvent.executor |
Modifier and Type | Method and Description |
---|---|
LifecycleMethodExecutor |
TestLifecycleEvent.getExecutor() |
LifecycleMethodExecutor |
LifecycleEvent.getExecutor()
Get the call back handler for this lifecycle method.
|
LifecycleMethodExecutor |
ClassLifecycleEvent.getExecutor() |
Constructor and Description |
---|
After(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
AfterClass(java.lang.Class<?> testClass,
LifecycleMethodExecutor executor) |
AfterTestLifecycleEvent(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
Before(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
BeforeClass(java.lang.Class<?> testClass,
LifecycleMethodExecutor executor) |
BeforeTestLifecycleEvent(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor) |
ClassLifecycleEvent(java.lang.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(java.lang.Object testInstance,
java.lang.reflect.Method testMethod,
LifecycleMethodExecutor executor)
Create a new TestLifecycleEvent for a specific testInstance executing a specific testMethod.
|