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
public class XMLJUnitResultFormatter extends java.lang.Object implements JUnitResultFormatter, XMLConstants
Prints XML output of the test to a specified Writer.- See Also:
FormatterElement
-
-
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 Constructor Description XMLJUnitResultFormatter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier 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.voidsetOutput(java.io.OutputStream out)Sets the stream the formatter is supposed to write its results to.voidsetSystemError(java.lang.String out)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.
-
-
-
Method Detail
-
setOutput
public void setOutput(java.io.OutputStream out)
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
public void setSystemOutput(java.lang.String out)
This is what the test has written to System.out.- Specified by:
setSystemOutputin interfaceJUnitResultFormatter- Parameters:
out- the string to write.
-
setSystemError
public void setSystemError(java.lang.String out)
This is what the test has written to System.err.- Specified by:
setSystemErrorin interfaceJUnitResultFormatter- Parameters:
out- the string to write.
-
startTestSuite
public void startTestSuite(JUnitTest suite)
The whole testsuite started.- Specified by:
startTestSuitein interfaceJUnitResultFormatter- Parameters:
suite- the testsuite.
-
endTestSuite
public void endTestSuite(JUnitTest suite) throws org.apache.tools.ant.BuildException
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
public 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.
-
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
public void addError(junit.framework.Test test, java.lang.Throwable t)Interface TestListener.An error occurred while running the test.
- Specified by:
addErrorin interfacejunit.framework.TestListener- Parameters:
test- the test.t- the error.
-
-