Package org.opengis.cite.ogcapiedr10
Class TestRunListener
java.lang.Object
org.opengis.cite.ogcapiedr10.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
Constructors - 
Method Summary
 
- 
Constructor Details
- 
TestRunListener
public TestRunListener() 
 - 
 - 
Method Details
- 
onExecutionStart
public void onExecutionStart()- Specified by:
 onExecutionStartin interfaceorg.testng.IExecutionListener
 - 
onExecutionFinish
public void onExecutionFinish()- Specified by:
 onExecutionFinishin interfaceorg.testng.IExecutionListener
 
 -