Package org.testng
Interface IConfigurationListener
-
- All Superinterfaces:
ITestNGListener
- All Known Subinterfaces:
IConfigurationListener2
,IResultListener
,IResultListener2
- All Known Implementing Classes:
DotTestListener
,ExitCodeListener
,FailedReporter
,JUnitXMLReporter
,TestHTMLReporter
,TestListenerAdapter
,TestNG.ExitCodeListener
,TextReporter
,VerboseReporter
public interface IConfigurationListener extends ITestNGListener
Listener interface for events related to configuration methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onConfigurationFailure(ITestResult itr)
Invoked whenever a configuration method failed.void
onConfigurationSkip(ITestResult itr)
Invoked whenever a configuration method was skipped.void
onConfigurationSuccess(ITestResult itr)
Invoked whenever a configuration method succeeded.
-
-
-
Method Detail
-
onConfigurationSuccess
void onConfigurationSuccess(ITestResult itr)
Invoked whenever a configuration method succeeded.
-
onConfigurationFailure
void onConfigurationFailure(ITestResult itr)
Invoked whenever a configuration method failed.
-
onConfigurationSkip
void onConfigurationSkip(ITestResult itr)
Invoked whenever a configuration method was skipped.
-
-