Package org.opengis.cite.gpkg12
Class TestRunListener
java.lang.Object
org.opengis.cite.gpkg12.TestRunListener
- All Implemented Interfaces:
org.testng.IExecutionListener
,org.testng.ITestNGListener
A listener that is invoked before and after a test run. It is often used to configure a
shared fixture that endures for the duration of the entire test run. A FixtureManager
may be used to manage such a fixture.
A shared fixture should be used with caution in order to avoid undesirable test interactions. In general, it should be populated with "read-only" objects that are not modified during the test run.
- See Also:
-
FixtureManager
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
TestRunListener
public TestRunListener()
-
-
Method Details
-
onExecutionStart
public void onExecutionStart()- Specified by:
onExecutionStart
in interfaceorg.testng.IExecutionListener
-
onExecutionFinish
public void onExecutionFinish()- Specified by:
onExecutionFinish
in interfaceorg.testng.IExecutionListener
-