blob: 9b6944361b9d8d922b9af26eb17e53feb2555f77 [file] [log] [blame]
Paul Duffincd7c34d2016-12-12 16:35:36 +00001package junit.framework;
2
3/**
4 * A Listener for test progress
5 */
6public 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}