Package junit.framework
Interface TestListener
-
- All Known Implementing Classes:
BaseTestRunner
,ResultPrinter
,TestRunner
public interface TestListener
A Listener for test progress
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addError(Test test, java.lang.Throwable e)
An error occurred.void
addFailure(Test test, AssertionFailedError e)
A failure occurred.void
endTest(Test test)
A test ended.void
startTest(Test test)
A test started.
-
-
-
Method Detail
-
addFailure
void addFailure(Test test, AssertionFailedError e)
A failure occurred.
-
-