public class PlainJUnitResultFormatter extends Object implements JUnitResultFormatter
| Constructor and Description |
|---|
PlainJUnitResultFormatter()
No arg constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
addError(Test test,
Throwable t)
Interface TestListener.
|
void |
addFailure(Test test,
AssertionFailedError t)
Interface TestListener for JUnit > 3.4.
|
void |
addFailure(Test test,
Throwable t)
Interface TestListener for JUnit <= 3.4.
|
void |
endTest(Test test)
Interface TestListener.
|
void |
endTestSuite(JUnitTest suite)
The whole testsuite ended.
|
void |
setOutput(OutputStream out)
Sets the stream the formatter is supposed to write its results to.
|
void |
setSystemError(String err)
This is what the test has written to System.err
|
void |
setSystemOutput(String out)
This is what the test has written to System.out
|
void |
startTest(Test t)
Interface TestListener.
|
void |
startTestSuite(JUnitTest suite)
The whole testsuite started.
|
public void setOutput(OutputStream out)
setOutput in interface JUnitResultFormattersetOutput in interface JUnitTaskMirror.JUnitResultFormatterMirrorout - the output stream to use.public void setSystemOutput(String out)
setSystemOutput in interface JUnitResultFormatterout - the string to write.public void setSystemError(String err)
setSystemError in interface JUnitResultFormattererr - the string to write.public void startTestSuite(JUnitTest suite) throws BuildException
startTestSuite in interface JUnitResultFormattersuite - the test suiteBuildException - if unable to write the outputpublic void endTestSuite(JUnitTest suite) throws BuildException
endTestSuite in interface JUnitResultFormattersuite - the test suiteBuildException - if unable to write the outputpublic void startTest(Test t)
A new Test is started.
t - the test.public void endTest(Test test)
A Test is finished.
test - the test.public void addFailure(Test test,
Throwable t)
A Test failed.
test - the test.t - the exception.public void addFailure(Test test,
AssertionFailedError t)
A Test failed.
test - the test.t - the assertion that failed.public void addError(Test test,
Throwable t)
An error occurred while running the test.
test - the test.t - the exception.Copyright © 2017 SAP SE. All Rights Reserved.