| junitx.ddtunit.DDTRunMonitor
DDTRunMonitor | public class DDTRunMonitor extends ResultPrinter implements DDTTestListener(Code) | | This class implements a simple monitor for testruns. It is implemented
as singleton so we can use it internally to protocol test progress and
results. Lateron there will be an implementaion of a TestRunner that
conformes to the interface DDTTestListener
author: jg |
addError | public void addError(Test test, Throwable t)(Code) | | Just let the standard runner do this work - do nothing
See Also: junit.framework.TestListener.addError(junit.framework.Testjava.lang.Throwable) |
addFailure | public void addFailure(Test test, AssertionFailedError t)(Code) | | Just let the standard runner do this work - do nothing
See Also: junit.framework.TestListener.addFailure(junit.framework.Testjunit.framework.AssertionFailedError) |
endTest | public void endTest(Test test)(Code) | | Just let the standard runner do this work - do nothing
See Also: junit.framework.TestListener.endTest(junit.framework.Test) |
getInstance | public static DDTRunMonitor getInstance()(Code) | | Get singleton instance of this class
singleton instance |
startTest | public void startTest(Test test)(Code) | | Just let the standard runner do this work - do nothing
See Also: junit.framework.TestListener.startTest(junit.framework.Test) |
|
|