Class SummaryJUnitResultFormatter
- java.lang.Object
- 
- org.apache.tools.ant.taskdefs.optional.junit.SummaryJUnitResultFormatter
 
- 
- All Implemented Interfaces:
- junit.framework.TestListener,- JUnitResultFormatter,- JUnitTaskMirror.JUnitResultFormatterMirror,- JUnitTaskMirror.SummaryJUnitResultFormatterMirror
 - Direct Known Subclasses:
- OutErrSummaryJUnitResultFormatter
 
 public class SummaryJUnitResultFormatter extends java.lang.Object implements JUnitResultFormatter, JUnitTaskMirror.SummaryJUnitResultFormatterMirror Prints short summary output of the test to Ant's logging system.
- 
- 
Constructor SummaryConstructors Constructor Description SummaryJUnitResultFormatter()
 - 
Method SummaryModifier and Type Method Description voidaddError(junit.framework.Test test, java.lang.Throwable t)EmptyvoidaddFailure(junit.framework.Test test, java.lang.Throwable t)EmptyvoidaddFailure(junit.framework.Test test, junit.framework.AssertionFailedError t)Interface TestListener for JUnit > 3.4.voidendTest(junit.framework.Test test)EmptyvoidendTestSuite(JUnitTest suite)The whole testsuite ended.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.outvoidsetWithOutAndErr(boolean value)Should the output to System.out and System.err be written to the summary.voidstartTest(junit.framework.Test t)EmptyvoidstartTestSuite(JUnitTest suite)The testsuite started.
 
- 
- 
- 
Method Detail- 
startTestSuitepublic void startTestSuite(JUnitTest suite) The testsuite started.- Specified by:
- startTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the testsuite.
 
 - 
startTestpublic void startTest(junit.framework.Test t) Empty- Specified by:
- startTestin interface- junit.framework.TestListener
- Parameters:
- t- not used.
 
 - 
endTestpublic void endTest(junit.framework.Test test) Empty- Specified by:
- endTestin interface- junit.framework.TestListener
- Parameters:
- test- not used.
 
 - 
addFailurepublic void addFailure(junit.framework.Test test, java.lang.Throwable t)Empty- Parameters:
- test- not used.
- t- not used.
 
 - 
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- not used.
- t- not used.
 
 - 
addErrorpublic void addError(junit.framework.Test test, java.lang.Throwable t)Empty- Specified by:
- addErrorin interface- junit.framework.TestListener
- Parameters:
- test- not used.
- t- not used.
 
 - 
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.
 
 - 
setWithOutAndErrpublic void setWithOutAndErr(boolean value) Should the output to System.out and System.err be written to the summary.- Specified by:
- setWithOutAndErrin interface- JUnitTaskMirror.SummaryJUnitResultFormatterMirror
- Parameters:
- value- if true write System.out and System.err to the summary.
 
 - 
endTestSuitepublic void endTestSuite(JUnitTest suite) throws BuildException The whole testsuite ended.- Specified by:
- endTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the testsuite.
- Throws:
- BuildException- if there is an error.
 
 
- 
 
-