Home | History | Annotate | Download | only in reporters
      1 package org.testng.reporters;
      2 
      3 import org.testng.TestNG;
      4 
      5 /**
      6  * A very simple <code>ITestListener</code> used by the TestNG runner to
      7  * find out the exit code.
      8  *
      9  * @author <a href='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a>
     10  */
     11 public class ExitCodeListener extends TestNG.ExitCodeListener {
     12   public ExitCodeListener() {
     13     super();
     14   }
     15 
     16   public ExitCodeListener(TestNG runner) {
     17     super(runner);
     18   }
     19 }
     20