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 Object implements JUnitResultFormatter, XMLConstants
Prints XML output of the test to a specified Writer.
See Also:
  • Constructor Details

    • XMLJUnitResultFormatter

      public XMLJUnitResultFormatter()
  • Method Details

    • setOutput

      public void setOutput(OutputStream out)
      Sets the stream the formatter is supposed to write its results to..
      Specified by:
      setOutput in interface JUnitResultFormatter
      Specified by:
      setOutput in interface JUnitTaskMirror.JUnitResultFormatterMirror
      Parameters:
      out - the output stream to use.
    • setSystemOutput

      public void setSystemOutput(String out)
      This is what the test has written to System.out.
      Specified by:
      setSystemOutput in interface JUnitResultFormatter
      Parameters:
      out - the string to write.
    • setSystemError

      public void setSystemError(String out)
      This is what the test has written to System.err.
      Specified by:
      setSystemError in interface JUnitResultFormatter
      Parameters:
      out - the string to write.
    • startTestSuite

      public void startTestSuite(JUnitTest suite)
      The whole testsuite started.
      Specified by:
      startTestSuite in interface JUnitResultFormatter
      Parameters:
      suite - the testsuite.
    • endTestSuite

      public void endTestSuite(JUnitTest suite) throws org.apache.tools.ant.BuildException
      The whole testsuite ended.
      Specified by:
      endTestSuite in interface JUnitResultFormatter
      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:
      startTest in interface junit.framework.TestListener
      Parameters:
      t - the test.
    • endTest

      public void endTest(junit.framework.Test test)
      Interface TestListener.

      A Test is finished.

      Specified by:
      endTest in interface junit.framework.TestListener
      Parameters:
      test - the test.
    • addFailure

      public void addFailure(junit.framework.Test test, 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:
      addFailure in interface junit.framework.TestListener
      Parameters:
      test - the test.
      t - the assertion.
    • addError

      public void addError(junit.framework.Test test, Throwable t)
      Interface TestListener.

      An error occurred while running the test.

      Specified by:
      addError in interface junit.framework.TestListener
      Parameters:
      test - the test.
      t - the error.