Package de.hybris.ant.taskdefs.yunit
Class BriefJUnitResultFormatter
java.lang.Object
de.hybris.ant.taskdefs.yunit.BriefJUnitResultFormatter
- All Implemented Interfaces:
JUnitResultFormatter,JUnitTaskMirror.JUnitResultFormatterMirror,junit.framework.TestListener
Prints plain text output of the test to a specified Writer. Inspired by the PlainJUnitResultFormatter.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidA test caused an error.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) A test ended.voidendTestSuite(JUnitTest suite) The whole testsuite ended.protected voidformatError(String type, junit.framework.Test test, Throwable error) Format an error and print it.protected StringformatTest(junit.framework.Test test) Format the test for printing..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 test) A test started.voidstartTestSuite(JUnitTest suite) The whole testsuite started.
-
Constructor Details
-
BriefJUnitResultFormatter
public BriefJUnitResultFormatter()Constructor for BriefJUnitResultFormatter.
-
-
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 write to
-
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
-
endTestSuite
The whole testsuite ended.- Specified by:
endTestSuitein interfaceJUnitResultFormatter- Parameters:
suite- the test suite
-
startTest
public void startTest(junit.framework.Test test) A test started.- Specified by:
startTestin interfacejunit.framework.TestListener- Parameters:
test- a test
-
endTest
public void endTest(junit.framework.Test test) A test ended.- Specified by:
endTestin interfacejunit.framework.TestListener- Parameters:
test- a test
-
addFailure
Interface TestListener for JUnit <= 3.4.A Test failed.
- Parameters:
test- a testt- the exception thrown by the test
-
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- a testt- the assertion failed by the test
-
addError
A test caused an error.- Specified by:
addErrorin interfacejunit.framework.TestListener- Parameters:
test- a testerror- the error thrown by the test
-
formatTest
Format the test for printing..- Parameters:
test- a test- Returns:
- the formatted testname
-
formatError
Format an error and print it.- Parameters:
type- the type of errortest- the test that failederror- the exception that the test threw
-