|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter
public class BriefJUnitResultFormatter
Prints plain text output of the test to a specified Writer. Inspired by the PlainJUnitResultFormatter.
FormatterElement
,
PlainJUnitResultFormatter
Constructor Summary | |
---|---|
BriefJUnitResultFormatter()
Constructor for BriefJUnitResultFormatter. |
Method Summary | |
---|---|
void |
addError(junit.framework.Test test,
java.lang.Throwable error)
A test caused an error. |
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)
Interface TestListener for JUnit <= 3.4. |
void |
endTest(junit.framework.Test test)
A test ended. |
void |
endTestSuite(JUnitTest suite)
The whole testsuite ended. |
protected void |
formatError(java.lang.String type,
junit.framework.Test test,
java.lang.Throwable error)
Format an error and print it. |
protected java.lang.String |
formatTest(junit.framework.Test test)
Format the test for printing.. |
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 |
startTest(junit.framework.Test test)
A test started. |
void |
startTestSuite(JUnitTest suite)
The whole testsuite started. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BriefJUnitResultFormatter()
Method Detail |
---|
public void setOutput(java.io.OutputStream out)
setOutput
in interface JUnitResultFormatter
setOutput
in interface JUnitTaskMirror.JUnitResultFormatterMirror
out
- the output stream to write topublic 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 startTestSuite(JUnitTest suite)
startTestSuite
in interface JUnitResultFormatter
suite
- the test suitepublic void endTestSuite(JUnitTest suite)
endTestSuite
in interface JUnitResultFormatter
suite
- the test suitepublic void startTest(junit.framework.Test test)
startTest
in interface junit.framework.TestListener
test
- a testpublic void endTest(junit.framework.Test test)
endTest
in interface junit.framework.TestListener
test
- a testpublic void addFailure(junit.framework.Test test, java.lang.Throwable t)
A Test failed.
test
- a testt
- the exception thrown by the testpublic void addFailure(junit.framework.Test test, junit.framework.AssertionFailedError t)
A Test failed.
addFailure
in interface junit.framework.TestListener
test
- a testt
- the assertion failed by the testpublic void addError(junit.framework.Test test, java.lang.Throwable error)
addError
in interface junit.framework.TestListener
test
- a testerror
- the error thrown by the testprotected java.lang.String formatTest(junit.framework.Test test)
test
- a test
protected void formatError(java.lang.String type, junit.framework.Test test, java.lang.Throwable error)
type
- the type of errortest
- the test that failederror
- the exception that the test threw
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |