Package de.hybris.ant.taskdefs.yunit
Class XMLJUnitResultFormatter
java.lang.Object
de.hybris.ant.taskdefs.yunit.XMLJUnitResultFormatter
- All Implemented Interfaces:
JUnitResultFormatter,JUnitTaskMirror.JUnitResultFormatterMirror,XMLConstants,junit.framework.TestListener
Prints XML output of the test to a specified Writer.
- See Also:
-
Field Summary
Fields inherited from interface de.hybris.ant.taskdefs.yunit.XMLConstants
ATTR_CLASSNAME, ATTR_ERRORS, ATTR_FAILURES, ATTR_ID, ATTR_MESSAGE, ATTR_NAME, ATTR_PACKAGE, ATTR_TESTS, ATTR_TIME, ATTR_TYPE, ATTR_VALUE, ERROR, FAILURE, HOSTNAME, PROPERTIES, PROPERTY, SYSTEM_ERR, SYSTEM_OUT, TESTCASE, TESTSUITE, TESTSUITES, TIMESTAMP -
Constructor Summary
Constructors -
Method Summary
Modifier 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.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.
-
Constructor Details
-
XMLJUnitResultFormatter
public XMLJUnitResultFormatter()
-
-
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 use.
-
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:
out- the string to write.
-
startTestSuite
The whole testsuite started.- Specified by:
startTestSuitein interfaceJUnitResultFormatter- Parameters:
suite- the testsuite.
-
endTestSuite
The whole testsuite ended.- Specified by:
endTestSuitein interfaceJUnitResultFormatter- Parameters:
suite- the testsuite.- Throws:
org.apache.tools.ant.BuildException- on error.
-
startTest
public void startTest(junit.framework.Test t) Interface TestListener.A new Test is started.
- Specified by:
startTestin interfacejunit.framework.TestListener- Parameters:
t- the test.
-
endTest
public void endTest(junit.framework.Test test) Interface TestListener.A Test is finished.
- Specified by:
endTestin interfacejunit.framework.TestListener- Parameters:
test- the test.
-
addFailure
Interface TestListener for JUnit <= 3.4.A Test failed.
- Parameters:
test- the test.t- the exception.
-
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- the test.t- the assertion.
-
addError
Interface TestListener.An error occurred while running the test.
- Specified by:
addErrorin interfacejunit.framework.TestListener- Parameters:
test- the test.t- the error.
-