blob: f834c194650d39a24f6209d12b7dc927059f4caa [file] [log] [blame]
package org.testng;
/**
* Listener for test suites.
*
* @author Cedric Beust, Aug 6, 2004
*
*/
public interface ISuiteListener extends ITestNGListener {
/**
* This method is invoked before the SuiteRunner starts.
*/
public void onStart(ISuite suite);
/**
* This method is invoked after the SuiteRunner has run all
* the test suites.
*/
public void onFinish(ISuite suite);
}