org.apache.tools.ant.taskdefs.optional.junit
Class PlainJUnitResultFormatter

java.lang.Object
  |
  +--org.apache.tools.ant.taskdefs.optional.junit.PlainJUnitResultFormatter
All Implemented Interfaces:
JUnitResultFormatter

public class PlainJUnitResultFormatter
extends java.lang.Object
implements JUnitResultFormatter

Prints plain text output of the test to a specified Writer.

Author:
Stefan Bodewig

Constructor Summary
PlainJUnitResultFormatter()
           
 
Method Summary
 void addError(junit.framework.Test test, java.lang.Throwable t)
          Interface TestListener.
 void addFailure(junit.framework.Test test, junit.framework.AssertionFailedError t)
          Interface TestListener for JUnit > 3.4.
 void addFailure(junit.framework.Test test, java.lang.Throwable t)
          Interface TestListener for JUnit <= 3.4.
 void endTest(junit.framework.Test test)
          Interface TestListener.
 void endTestSuite(JUnitTest suite)
          The whole testsuite ended.
 void setOutput(java.io.OutputStream out)
          Sets the stream the formatter is supposed to write its results to.
 void startTest(junit.framework.Test t)
          Interface TestListener.
 void startTestSuite(JUnitTest suite)
          Empty.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PlainJUnitResultFormatter

public PlainJUnitResultFormatter()
Method Detail

setOutput

public void setOutput(java.io.OutputStream out)
Description copied from interface: JUnitResultFormatter
Sets the stream the formatter is supposed to write its results to.
Specified by:
setOutput in interface JUnitResultFormatter

startTestSuite

public void startTestSuite(JUnitTest suite)
Empty.
Specified by:
startTestSuite in interface JUnitResultFormatter

endTestSuite

public void endTestSuite(JUnitTest suite)
                  throws BuildException
The whole testsuite ended.
Specified by:
endTestSuite in interface JUnitResultFormatter

startTest

public void startTest(junit.framework.Test t)
Interface TestListener.

A new Test is started.


endTest

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

A Test is finished.


addFailure

public void addFailure(junit.framework.Test test,
                       java.lang.Throwable t)
Interface TestListener for JUnit <= 3.4.

A Test failed.


addFailure

public void addFailure(junit.framework.Test test,
                       junit.framework.AssertionFailedError t)
Interface TestListener for JUnit > 3.4.

A Test failed.


addError

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

An error occured while running the test.



Copyright ? 2000 Apache Software Foundation. All Rights Reserved.