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

java.lang.Object
  extended byorg.apache.tools.ant.taskdefs.optional.junit.SummaryJUnitResultFormatter
All Implemented Interfaces:
JUnitResultFormatter

public class SummaryJUnitResultFormatter
extends java.lang.Object
implements JUnitResultFormatter

Prints short summary output of the test to Ant's logging system.


Constructor Summary
SummaryJUnitResultFormatter()
          Empty
 
Method Summary
 void addError(Test test, java.lang.Throwable t)
          Empty
 void addFailure(Test test, java.lang.Throwable t)
          Empty
 void endTest(Test test)
          Empty
 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 setSystemError(java.lang.String err)
          This is what the test has written to System.err
 void setSystemOutput(java.lang.String out)
          This is what the test has written to System.out
 void setWithOutAndErr(boolean value)
          Should the output to System.out and System.err be written to the summary.
 void startTest(Test t)
          Empty
 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

SummaryJUnitResultFormatter

public SummaryJUnitResultFormatter()
Empty

Method Detail

startTestSuite

public void startTestSuite(JUnitTest suite)
Empty

Specified by:
startTestSuite in interface JUnitResultFormatter

startTest

public void startTest(Test t)
Empty


endTest

public void endTest(Test test)
Empty


addFailure

public void addFailure(Test test,
                       java.lang.Throwable t)
Empty


addError

public void addError(Test test,
                     java.lang.Throwable t)
Empty


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

setSystemOutput

public void setSystemOutput(java.lang.String out)
Description copied from interface: JUnitResultFormatter
This is what the test has written to System.out

Specified by:
setSystemOutput in interface JUnitResultFormatter

setSystemError

public void setSystemError(java.lang.String err)
Description copied from interface: JUnitResultFormatter
This is what the test has written to System.err

Specified by:
setSystemError in interface JUnitResultFormatter

setWithOutAndErr

public void setWithOutAndErr(boolean value)
Should the output to System.out and System.err be written to the summary.


endTestSuite

public void endTestSuite(JUnitTest suite)
                  throws BuildException
The whole testsuite ended.

Specified by:
endTestSuite in interface JUnitResultFormatter
Throws:
BuildException


Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.