blob: eba3033de1c8b89fc54e3f5e363880e7dbc39702 [file] [log] [blame]
package org.testng;
/**
* Listener interface for events related to configuration methods.
*/
public interface IConfigurationListener extends ITestNGListener {
/**
* Invoked whenever a configuration method succeeded.
*/
void onConfigurationSuccess(ITestResult itr);
/**
* Invoked whenever a configuration method failed.
*/
void onConfigurationFailure(ITestResult itr);
/**
* Invoked whenever a configuration method was skipped.
*/
void onConfigurationSkip(ITestResult itr);
}