org.apache.tools.ant.taskdefs.optional.junitClass BriefJUnitResultFormatter
- java.lang.Object
 
- org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter
 
- All Implemented Interfaces:
 - junit.framework.TestListener, IgnoredTestListener, JUnitResultFormatter, JUnitTaskMirror.JUnitResultFormatterMirror
 
public class BriefJUnitResultFormatter extends java.lang.Object implements JUnitResultFormatter, IgnoredTestListenerPrints plain text output of the test to a specified Writer. Inspired by the PlainJUnitResultFormatter.
- See Also:
 FormatterElement,PlainJUnitResultFormatter
Constructor Summary
Constructors Constructor and Description BriefJUnitResultFormatter()Constructor for BriefJUnitResultFormatter.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidaddError(junit.framework.Test test, java.lang.Throwable error)A test caused an error.voidaddFailure(junit.framework.Test test, junit.framework.AssertionFailedError t)Interface TestListener for JUnit > 3.4.voidaddFailure(junit.framework.Test test, java.lang.Throwable t)Interface TestListener for JUnit <= 3.4.voidendTest(junit.framework.Test test)A test ended.voidendTestSuite(JUnitTest suite)The whole testsuite ended.protected voidformatError(java.lang.String type, junit.framework.Test test, java.lang.Throwable error)Format an error and print it.voidformatSkip(junit.framework.Test test, java.lang.String message)protected java.lang.StringformatTest(junit.framework.Test test)Format the test for printing..voidsetOutput(java.io.OutputStream out)Sets the stream the formatter is supposed to write its results to.voidsetSystemError(java.lang.String err)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 test)A test started.voidstartTestSuite(JUnitTest suite)The whole testsuite started.voidtestAssumptionFailure(junit.framework.Test test, java.lang.Throwable cause)Receive a report that a test has failed an assumption.voidtestIgnored(junit.framework.Test test)Reports when a test has been marked with the @Ignore annotation.
Constructor Detail
BriefJUnitResultFormatter
public BriefJUnitResultFormatter()Constructor for BriefJUnitResultFormatter.
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 write to
setSystemOutput
public void setSystemOutput(java.lang.String out)Description copied from interface:JUnitResultFormatterThis is what the test has written to System.out
- Specified by:
 setSystemOutputin interfaceJUnitResultFormatter- Parameters:
 out- the string to write.- See Also:
 {@inheritDoc}.
setSystemError
public void setSystemError(java.lang.String err)Description copied from interface:JUnitResultFormatterThis is what the test has written to System.err
- Specified by:
 setSystemErrorin interfaceJUnitResultFormatter- Parameters:
 err- the string to write.- See Also:
 {@inheritDoc}.
startTestSuite
public void startTestSuite(JUnitTest suite)The whole testsuite started.
- Specified by:
 startTestSuitein interfaceJUnitResultFormatter- Parameters:
 suite- the test suite
endTestSuite
public void endTestSuite(JUnitTest suite)The whole testsuite ended.
- Specified by:
 endTestSuitein interfaceJUnitResultFormatter- Parameters:
 suite- the test suite
startTest
public void startTest(junit.framework.Test test)A test started.
- Specified by:
 startTestin interfacejunit.framework.TestListener- Parameters:
 test- a test
endTest
public void endTest(junit.framework.Test test)A test ended.
- Specified by:
 endTestin interfacejunit.framework.TestListener- Parameters:
 test- a test
addFailure
public void addFailure(junit.framework.Test test, java.lang.Throwable t)Interface TestListener for JUnit <= 3.4.A Test failed.
- Parameters:
 test- a testt- the exception thrown by the test
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- a testt- the assertion failed by the test
addError
public void addError(junit.framework.Test test, java.lang.Throwable error)A test caused an error.
- Specified by:
 addErrorin interfacejunit.framework.TestListener- Parameters:
 test- a testerror- the error thrown by the test
formatTest
protected java.lang.String formatTest(junit.framework.Test test)Format the test for printing..
- Parameters:
 test- a test- Returns:
 - the formatted testname
 
formatError
protected void formatError(java.lang.String type, junit.framework.Test test, java.lang.Throwable error)Format an error and print it.
- Parameters:
 type- the type of errortest- the test that failederror- the exception that the test threw
testIgnored
public void testIgnored(junit.framework.Test test)Description copied from interface:IgnoredTestListenerReports when a test has been marked with the @Ignore annotation. The parameter should normally be typed to JUnit'sJUnit4TestCaseFacadeso implementing classes should be able to get the details of the ignore by casting the argument and retrieving the descriptor from the test.
- Specified by:
 testIgnoredin interfaceIgnoredTestListener- Parameters:
 test- the details of the test and failure that have triggered this report.
formatSkip
public void formatSkip(junit.framework.Test test, java.lang.String message)
testAssumptionFailure
public void testAssumptionFailure(junit.framework.Test test, java.lang.Throwable cause)Description copied from interface:IgnoredTestListenerReceive a report that a test has failed an assumption. Within JUnit4 this is normally treated as a test being skipped, although how any listener handles this is up to that specific listener.Note: Tests that throw assumption failures will still report the endTest method, which may differ from how the addError and addFailure methods work, it's up for any implementing classes to handle this.
- Specified by:
 testAssumptionFailurein interfaceIgnoredTestListener- Parameters:
 test- the details of the test and failure that have triggered this report.cause- the AssumptionViolatedException thrown from the current assumption failure.