Class PlainJUnitResultFormatter
- java.lang.Object
- 
- org.apache.tools.ant.taskdefs.optional.junit.PlainJUnitResultFormatter
 
- 
- All Implemented Interfaces:
- junit.framework.TestListener,- IgnoredTestListener,- JUnitResultFormatter,- JUnitTaskMirror.JUnitResultFormatterMirror
 
 public class PlainJUnitResultFormatter extends java.lang.Object implements JUnitResultFormatter, IgnoredTestListener Prints plain text output of the test to a specified Writer.
- 
- 
Constructor SummaryConstructors Constructor Description PlainJUnitResultFormatter()No arg constructor
 - 
Method SummaryModifier and Type Method Description voidaddError(junit.framework.Test test, java.lang.Throwable t)Interface TestListener.voidaddFailure(junit.framework.Test test, java.lang.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.voidformatSkip(junit.framework.Test test, java.lang.String message)voidsetOutput(java.io.OutputStream out)Sets the stream the formatter is supposed to write its results to.voidsetSystemError(java.lang.String err)This is what the test has written to System.errvoidsetSystemOutput(java.lang.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.voidtestAssumptionFailure(junit.framework.Test test, java.lang.Throwable throwable)Receive a report that a test has failed an assumption.voidtestIgnored(junit.framework.Test test)Reports when a test has been marked with the @Ignore annotation.
 
- 
- 
- 
Method Detail- 
setOutputpublic void setOutput(java.io.OutputStream out) Sets the stream the formatter is supposed to write its results to..- Specified by:
- setOutputin interface- JUnitResultFormatter
- Specified by:
- setOutputin interface- JUnitTaskMirror.JUnitResultFormatterMirror
- Parameters:
- out- the output stream to use.
 
 - 
setSystemOutputpublic void setSystemOutput(java.lang.String out) This is what the test has written to System.out.- Specified by:
- setSystemOutputin interface- JUnitResultFormatter
- Parameters:
- out- the string to write.
 
 - 
setSystemErrorpublic void setSystemError(java.lang.String err) This is what the test has written to System.err.- Specified by:
- setSystemErrorin interface- JUnitResultFormatter
- Parameters:
- err- the string to write.
 
 - 
startTestSuitepublic void startTestSuite(JUnitTest suite) throws BuildException The whole testsuite started.- Specified by:
- startTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the test suite
- Throws:
- BuildException- if unable to write the output
 
 - 
endTestSuitepublic void endTestSuite(JUnitTest suite) throws BuildException The whole testsuite ended.- Specified by:
- endTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the test suite
- Throws:
- BuildException- if unable to write the output
 
 - 
startTestpublic void startTest(junit.framework.Test t) Interface TestListener.A new Test is started. - Specified by:
- startTestin interface- junit.framework.TestListener
- Parameters:
- t- the test.
 
 - 
endTestpublic void endTest(junit.framework.Test test) Interface TestListener.A Test is finished. - Specified by:
- endTestin interface- junit.framework.TestListener
- Parameters:
- test- the test.
 
 - 
addFailurepublic void addFailure(junit.framework.Test test, java.lang.Throwable t)Interface TestListener for JUnit <= 3.4.A Test failed. - Parameters:
- test- the test.
- t- the exception.
 
 - 
addFailurepublic void addFailure(junit.framework.Test test, junit.framework.AssertionFailedError t)Interface TestListener for JUnit > 3.4.A Test failed. - Specified by:
- addFailurein interface- junit.framework.TestListener
- Parameters:
- test- the test.
- t- the assertion that failed.
 
 - 
addErrorpublic void addError(junit.framework.Test test, java.lang.Throwable t)Interface TestListener.An error occurred while running the test. - Specified by:
- addErrorin interface- junit.framework.TestListener
- Parameters:
- test- the test.
- t- the exception.
 
 - 
testIgnoredpublic void testIgnored(junit.framework.Test test) Description copied from interface:IgnoredTestListenerReports when a test has been marked with the @Ignore annotation. The parameter should normally be typed to JUnit'sJUnit4TestCaseFacadeso implementing classes should be able to get the details of the ignore by casting the argument and retrieving the descriptor from the test.- Specified by:
- testIgnoredin interface- IgnoredTestListener
- Parameters:
- test- the details of the test and failure that have triggered this report.
 
 - 
formatSkippublic void formatSkip(junit.framework.Test test, java.lang.String message)
 - 
testAssumptionFailurepublic void testAssumptionFailure(junit.framework.Test test, java.lang.Throwable throwable)Description copied from interface:IgnoredTestListenerReceive a report that a test has failed an assumption. Within JUnit4 this is normally treated as a test being skipped, although how any listener handles this is up to that specific listener.Note: Tests that throw assumption failures will still report the endTest method, which may differ from how the addError and addFailure methods work, it's up for any implementing classes to handle this. - Specified by:
- testAssumptionFailurein interface- IgnoredTestListener
- Parameters:
- test- the details of the test and failure that have triggered this report.
- throwable- the AssumptionViolatedException thrown from the current assumption failure.
 
 
- 
 
-