Package de.hybris.ant.taskdefs.yunit
Class PlainJUnitResultFormatter
java.lang.Object
de.hybris.ant.taskdefs.yunit.PlainJUnitResultFormatter
- All Implemented Interfaces:
JUnitResultFormatter,JUnitTaskMirror.JUnitResultFormatterMirror,junit.framework.TestListener
Prints plain text output of the test to a specified Writer.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidInterface TestListener.voidaddFailure(junit.framework.Test test, Throwable t) Interface TestListener for JUnit <= 3.4.voidaddFailure(junit.framework.Test test, junit.framework.AssertionFailedError t) Interface TestListener for JUnit > 3.4.voidendTest(junit.framework.Test test) Interface TestListener.voidendTestSuite(JUnitTest suite) The whole testsuite ended.voidsetOutput(OutputStream out) Sets the stream the formatter is supposed to write its results to.voidsetSystemError(String err) This is what the test has written to System.errvoidsetSystemOutput(String out) This is what the test has written to System.outvoidstartTest(junit.framework.Test t) Interface TestListener.voidstartTestSuite(JUnitTest suite) The whole testsuite started.
-
Constructor Details
-
PlainJUnitResultFormatter
public PlainJUnitResultFormatter()No arg constructor
-
-
Method Details
-
setOutput
Sets the stream the formatter is supposed to write its results to..- Specified by:
setOutputin interfaceJUnitResultFormatter- Specified by:
setOutputin interfaceJUnitTaskMirror.JUnitResultFormatterMirror- Parameters:
out- the output stream to use.
-
setSystemOutput
This is what the test has written to System.out.- Specified by:
setSystemOutputin interfaceJUnitResultFormatter- Parameters:
out- the string to write.
-
setSystemError
This is what the test has written to System.err.- Specified by:
setSystemErrorin interfaceJUnitResultFormatter- Parameters:
err- the string to write.
-
startTestSuite
The whole testsuite started.- Specified by:
startTestSuitein interfaceJUnitResultFormatter- Parameters:
suite- the test suite- Throws:
org.apache.tools.ant.BuildException- if unable to write the output
-
endTestSuite
The whole testsuite ended.- Specified by:
endTestSuitein interfaceJUnitResultFormatter- Parameters:
suite- the test suite- Throws:
org.apache.tools.ant.BuildException- if unable to write the output
-
startTest
public void startTest(junit.framework.Test t) Interface TestListener.A new Test is started.
- Specified by:
startTestin interfacejunit.framework.TestListener- Parameters:
t- the test.
-
endTest
public void endTest(junit.framework.Test test) Interface TestListener.A Test is finished.
- Specified by:
endTestin interfacejunit.framework.TestListener- Parameters:
test- the test.
-
addFailure
Interface TestListener for JUnit <= 3.4.A Test failed.
- Parameters:
test- the test.t- the exception.
-
addFailure
public void addFailure(junit.framework.Test test, junit.framework.AssertionFailedError t) Interface TestListener for JUnit > 3.4.A Test failed.
- Specified by:
addFailurein interfacejunit.framework.TestListener- Parameters:
test- the test.t- the assertion that failed.
-
addError
Interface TestListener.An error occurred while running the test.
- Specified by:
addErrorin interfacejunit.framework.TestListener- Parameters:
test- the test.t- the exception.
-