View Javadoc

1   package junitour;
2   
3   import junit.framework.TestListener;
4   import junit.framework.Test;
5   
6   /**
7    * A listener for a "UnitTestIncomplete" event <br/>.
8    * This could be used to count the incomplete tests...
9    * <p/>
10   * created: by Hostlowsky, at 31.08.2003 / 22:25:47
11   * <pre>
12   * $Log$
13   * Revision 1.2  2004/07/08 01:47:50  hostlows
14   * cleanup, new build, license changed to mozilla license...
15   *
16   * Revision 1.1.1.1  2003/11/12 23:32:13  hostlows
17   * Initial import.
18   *
19   * Revision 1.1  2003/10/30 07:13:54  hostlows
20   * </pre>
21   * 
22   * @author created by  <a href="mailto:hostlows@users.sf.net">Robert Hostlowsky</a>
23   * @version $Revision: 26 $, $Date: 2004-07-08 03:47:50 +0200 (Do, 08 Jul 2004) $
24   */
25  public interface UnitTestIncompleteListener extends TestListener {
26  
27    public void addUnitTestIncompleteListener(Test test, final Throwable t);
28  
29  }