• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng;
2 
3 
4 /**
5  * Listener for test suites.
6  *
7  * @author Cedric Beust, Aug 6, 2004
8  *
9  */
10 public interface ISuiteListener extends ITestNGListener {
11   /**
12    * This method is invoked before the SuiteRunner starts.
13    */
onStart(ISuite suite)14   public void onStart(ISuite suite);
15 
16   /**
17    * This method is invoked after the SuiteRunner has run all
18    * the test suites.
19    */
onFinish(ISuite suite)20   public void onFinish(ISuite suite);
21 
22 }
23