blob: a4863326f39e2090d9b75b5ab50f42730e573e16 [file] [log] [blame]
package org.testng.internal;
import org.testng.ITestResult;
/**
* Listener interface for events related to results of @Configuration method invocations.
*
* @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
*/
public interface IConfigurationListener {
void onConfigurationSuccess(ITestResult itr);
void onConfigurationFailure(ITestResult itr);
void onConfigurationSkip(ITestResult itr);
}