• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng;
2 
3 /**
4  * A listener used to monitor when a TestNG run starts and ends.
5  *
6  * @author Cedric Beust <cedric@beust.com>
7  */
8 public interface IExecutionListener extends ITestNGListener {
9 
10   /**
11    * Invoked before the TestNG run starts.
12    */
onExecutionStart()13   void onExecutionStart();
14 
15   /**
16    * Invoked once all the suites have been run.
17    */
onExecutionFinish()18   void onExecutionFinish();
19 
20 }
21