OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / junit / src / main / java / junit / framework / TestListener.java
1 package junit.framework;
2
3 /**
4  * A Listener for test progress
5  */
6 public interface TestListener {
7     /**
8       * An error occurred.
9       */
10     public void addError(Test test, Throwable t);
11     /**
12       * A failure occurred.
13       */
14      public void addFailure(Test test, AssertionFailedError t);
15     /**
16      * A test ended.
17      */
18      public void endTest(Test test);
19     /**
20      * A test started.
21      */
22     public void startTest(Test test);
23 }