• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng.internal;
2 
3 import org.testng.IConfigurationListener;
4 import org.testng.ITestListener;
5 
6 
7 /**
8  * A convenient interface to use when implementing listeners.
9  * @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
10  */
11 public interface IResultListener extends ITestListener, IConfigurationListener {
12 
13 }
14