FileDocCategorySizeDatePackage
JUnitResultFormatter.javaAPI DocApache Ant 1.702030Wed Dec 13 06:16:20 GMT 2006org.apache.tools.ant.taskdefs.optional.junit

JUnitResultFormatter

public interface JUnitResultFormatter implements TestListener, JUnitTaskMirror.JUnitResultFormatterMirror
This Interface describes classes that format the results of a JUnit testrun.

Fields Summary
Constructors Summary
Methods Summary
public voidendTestSuite(JUnitTest suite)
The whole testsuite ended.

param
suite the suite.
throws
BuildException on error.

public voidsetOutput(java.io.OutputStream out)
Sets the stream the formatter is supposed to write its results to.

param
out the output stream to use.

public voidsetSystemError(java.lang.String err)
This is what the test has written to System.err

param
err the string to write.

public voidsetSystemOutput(java.lang.String out)
This is what the test has written to System.out

param
out the string to write.

public voidstartTestSuite(JUnitTest suite)
The whole testsuite started.

param
suite the suite.
throws
BuildException on error.