Skip to content

Instantly share code, notes, and snippets.

@sahajamit
Created April 17, 2015 13:33
Show Gist options
  • Save sahajamit/23173e12c034a56cf68e to your computer and use it in GitHub Desktop.
Save sahajamit/23173e12c034a56cf68e to your computer and use it in GitHub Desktop.
import org.testng.ISuite;
import org.testng.ISuiteListener;
import org.testng.IExecutionListener;
public class TestNGExecutionListener implements IExecutionListener {
@Override
public void onExecutionStart() {
System.out.println("TestNG is staring the execution");
}
@Override
public void onExecutionFinish() {
System.out.println("TestNG has finished, the execution");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment