Class TearDownOnVmCrash
java.lang.Object
org.apache.tools.ant.taskdefs.optional.junit.TearDownOnVmCrash
- All Implemented Interfaces:
- junit.framework.TestListener,- JUnitResultFormatter,- JUnitTaskMirror.JUnitResultFormatterMirror
Formatter that doesn't create any output but tries to invoke the
 tearDown method on a testcase if that test was forked and caused a
 timeout or VM crash.
 
This formatter has some limitations, for details see the <junit> task's manual.
- Since:
- Ant 1.8.0
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidOnly invoke tearDown if the suite is known and not the dummy test we get when a Batch fails and the error is an actual error generated by Ant.voidaddFailure(junit.framework.Test test, Throwable t) voidaddFailure(junit.framework.Test test, junit.framework.AssertionFailedError t) voidendTest(junit.framework.Test test) voidendTestSuite(JUnitTest suite) The whole testsuite ended.voidsetOutput(OutputStream out) Sets the stream the formatter is supposed to write its results to.voidsetSystemError(String err) This is what the test has written to System.errvoidsetSystemOutput(String out) This is what the test has written to System.outvoidstartTest(junit.framework.Test test) voidstartTestSuite(JUnitTest suite) Records the suite's name to later determine the class to invoke tearDown on.
- 
Constructor Details- 
TearDownOnVmCrashpublic TearDownOnVmCrash()
 
- 
- 
Method Details- 
startTestSuiteRecords the suite's name to later determine the class to invoke tearDown on.- Specified by:
- startTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the suite.
 
- 
addErrorOnly invoke tearDown if the suite is known and not the dummy test we get when a Batch fails and the error is an actual error generated by Ant.- Specified by:
- addErrorin interface- junit.framework.TestListener
 
- 
addFailure
- 
addFailurepublic void addFailure(junit.framework.Test test, junit.framework.AssertionFailedError t) - Specified by:
- addFailurein interface- junit.framework.TestListener
 
- 
startTestpublic void startTest(junit.framework.Test test) - Specified by:
- startTestin interface- junit.framework.TestListener
 
- 
endTestpublic void endTest(junit.framework.Test test) - Specified by:
- endTestin interface- junit.framework.TestListener
 
- 
endTestSuiteDescription copied from interface:JUnitResultFormatterThe whole testsuite ended.- Specified by:
- endTestSuitein interface- JUnitResultFormatter
- Parameters:
- suite- the suite.
 
- 
setOutputDescription copied from interface:JUnitResultFormatterSets the stream the formatter is supposed to write its results to.- Specified by:
- setOutputin interface- JUnitResultFormatter
- Specified by:
- setOutputin interface- JUnitTaskMirror.JUnitResultFormatterMirror
- Parameters:
- out- the output stream to use.
 
- 
setSystemOutputDescription copied from interface:JUnitResultFormatterThis is what the test has written to System.out- Specified by:
- setSystemOutputin interface- JUnitResultFormatter
- Parameters:
- out- the string to write.
 
- 
setSystemErrorDescription copied from interface:JUnitResultFormatterThis is what the test has written to System.err- Specified by:
- setSystemErrorin interface- JUnitResultFormatter
- Parameters:
- err- the string to write.
 
 
-