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 Object
implements JUnitResultFormatter, JUnitTaskMirror.SummaryJUnitResultFormatterMirror
Prints short summary output of the test to Ant's logging system.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidEmptyvoidaddFailure(junit.framework.Test test, 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(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.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.
- 
Constructor Details- 
SummaryJUnitResultFormatterpublic SummaryJUnitResultFormatter()
 
- 
- 
Method Details- 
startTestSuiteThe 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.
 
- 
addFailureEmpty- 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.
 
- 
addErrorEmpty- Specified by:
- addErrorin interface- junit.framework.TestListener
- Parameters:
- test- not used.
- t- not used.
 
- 
setOutputSets 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.
 
- 
setSystemOutputThis is what the test has written to System.out.- Specified by:
- setSystemOutputin interface- JUnitResultFormatter
- Parameters:
- out- the string to write.
 
- 
setSystemErrorThis 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.
 
- 
endTestSuiteThe whole testsuite ended.- Specified by:
- endTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the testsuite.
- Throws:
- BuildException- if there is an error.
 
 
-