Class XMLJUnitResultFormatter
java.lang.Object
org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter
- All Implemented Interfaces:
- junit.framework.TestListener,- IgnoredTestListener,- JUnitResultFormatter,- JUnitTaskMirror.JUnitResultFormatterMirror,- XMLConstants
public class XMLJUnitResultFormatter
extends Object
implements JUnitResultFormatter, XMLConstants, IgnoredTestListener
Prints XML output of the test to a specified Writer.
- See Also:
- 
Field SummaryFields inherited from interface org.apache.tools.ant.taskdefs.optional.junit.XMLConstantsATTR_CLASSNAME, ATTR_ERRORS, ATTR_FAILURES, ATTR_ID, ATTR_MESSAGE, ATTR_NAME, ATTR_PACKAGE, ATTR_SKIPPED, ATTR_TESTS, ATTR_TIME, ATTR_TYPE, ATTR_VALUE, ERROR, FAILURE, HOSTNAME, PROPERTIES, PROPERTY, SYSTEM_ERR, SYSTEM_OUT, TESTCASE, TESTSUITE, TESTSUITES, TIMESTAMP
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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.voidformatSkip(junit.framework.Test test, String message) voidsetOutput(OutputStream out) Sets the stream the formatter is supposed to write its results to.voidsetSystemError(String out) 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.voidtestAssumptionFailure(junit.framework.Test test, Throwable failure) 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.
- 
Constructor Details- 
XMLJUnitResultFormatterpublic XMLJUnitResultFormatter()
 
- 
- 
Method Details- 
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:
- out- the string to write.
 
- 
startTestSuiteThe whole testsuite started.- Specified by:
- startTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the testsuite.
 
- 
endTestSuiteThe whole testsuite ended.- Specified by:
- endTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the testsuite.
- Throws:
- BuildException- on error.
 
- 
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.
 
- 
addFailureInterface 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.
 
- 
addErrorInterface TestListener.An error occurred while running the test. - Specified by:
- addErrorin interface- junit.framework.TestListener
- Parameters:
- test- the test.
- t- the error.
 
- 
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.
 
- 
formatSkip
- 
testAssumptionFailureDescription 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.
- failure- the AssumptionViolatedException thrown from the current assumption failure.
 
 
-