public class SummaryJUnitResultFormatter extends java.lang.Object implements JUnitResultFormatter, JUnitTaskMirror.SummaryJUnitResultFormatterMirror
Constructor and Description |
---|
SummaryJUnitResultFormatter()
Empty
|
Modifier and Type | Method and Description |
---|---|
void |
addError(junit.framework.Test test,
java.lang.Throwable t)
Empty
|
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)
Empty
|
void |
endTest(junit.framework.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(junit.framework.Test t)
Empty
|
void |
startTestSuite(JUnitTest suite)
The testsuite started.
|
public void startTestSuite(JUnitTest suite)
startTestSuite
in interface JUnitResultFormatter
suite
- the testsuite.public void startTest(junit.framework.Test t)
startTest
in interface junit.framework.TestListener
t
- not used.public void endTest(junit.framework.Test test)
endTest
in interface junit.framework.TestListener
test
- not used.public void addFailure(junit.framework.Test test, java.lang.Throwable t)
test
- not used.t
- not used.public void addFailure(junit.framework.Test test, junit.framework.AssertionFailedError t)
A Test failed.
addFailure
in interface junit.framework.TestListener
test
- not used.t
- not used.public void addError(junit.framework.Test test, java.lang.Throwable t)
addError
in interface junit.framework.TestListener
test
- not used.t
- not used.public void setOutput(java.io.OutputStream out)
setOutput
in interface JUnitResultFormatter
setOutput
in interface JUnitTaskMirror.JUnitResultFormatterMirror
out
- the output stream to use.public void setSystemOutput(java.lang.String out)
setSystemOutput
in interface JUnitResultFormatter
out
- the string to write.public void setSystemError(java.lang.String err)
setSystemError
in interface JUnitResultFormatter
err
- the string to write.public void setWithOutAndErr(boolean value)
setWithOutAndErr
in interface JUnitTaskMirror.SummaryJUnitResultFormatterMirror
value
- if true write System.out and System.err to the summary.public void endTestSuite(JUnitTest suite) throws BuildException
endTestSuite
in interface JUnitResultFormatter
suite
- the testsuite.BuildException
- if there is an error.