public abstract class AbstractTestExecutionListener extends Object implements TestExecutionListener
TestExecutionListener interface which
provides empty method stubs. Subclasses can extend this class and override
only those methods suitable for the task at hand.| Constructor and Description |
|---|
AbstractTestExecutionListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
afterTestClass(TestContext testContext)
The default implementation is empty.
|
void |
afterTestMethod(TestContext testContext)
The default implementation is empty.
|
void |
beforeTestClass(TestContext testContext)
The default implementation is empty.
|
void |
beforeTestMethod(TestContext testContext)
The default implementation is empty.
|
void |
prepareTestInstance(TestContext testContext)
The default implementation is empty.
|
public void beforeTestClass(TestContext testContext) throws Exception
beforeTestClass in interface TestExecutionListenertestContext - the test context for the test; never nullException - allows any exception to propagatepublic void prepareTestInstance(TestContext testContext) throws Exception
prepareTestInstance in interface TestExecutionListenertestContext - the test context for the test; never nullException - allows any exception to propagatepublic void beforeTestMethod(TestContext testContext) throws Exception
beforeTestMethod in interface TestExecutionListenertestContext - the test context in which the test method will be
executed; never nullException - allows any exception to propagatepublic void afterTestMethod(TestContext testContext) throws Exception
afterTestMethod in interface TestExecutionListenertestContext - the test context in which the test method was
executed; never nullException - allows any exception to propagatepublic void afterTestClass(TestContext testContext) throws Exception
afterTestClass in interface TestExecutionListenertestContext - the test context for the test; never nullException - allows any exception to propagate