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,TestRunner.ConfigurationListener,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 voidonConfigurationFailure(ITestResult itr)Invoked whenever a configuration method failed.voidonConfigurationSkip(ITestResult itr)Invoked whenever a configuration method was skipped.voidonConfigurationSuccess(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.
-
-