| java.lang.Object org.andromda.maven.plugin.cartridge.CartridgeTestFormatter
CartridgeTestFormatter | public class CartridgeTestFormatter implements TestListener(Code) | | Formats the cartridge test results into the correct format.
author: Chad Brandon |
Method Summary | |
public void | addError(Test test, Throwable throwable) | public void | addFailure(Test test, AssertionFailedError failure) | public void | endTest(Test test) | String | endTestSuite(Test test) Signifies the test suite ended and returns the summary of the
test.
Parameters: test - the test suite being run. | public void | setReportFile(File reportFile) Sets the file that will contain the report results (i.e. | public void | startTest(Test test) | public void | startTestSuite(String name) The testsuite started. |
CartridgeTestFormatter | public CartridgeTestFormatter()(Code) | | |
addError | public void addError(Test test, Throwable throwable)(Code) | | See Also: junit.framework.TestListener.addError(junit.framework.Testjava.lang.Throwable) |
addFailure | public void addFailure(Test test, AssertionFailedError failure)(Code) | | See Also: junit.framework.TestListener.addFailure(junit.framework.Testjunit.framework.AssertionFailedError) |
endTest | public void endTest(Test test)(Code) | | |
endTestSuite | String endTestSuite(Test test)(Code) | | Signifies the test suite ended and returns the summary of the
test.
Parameters: test - the test suite being run. the test summary. |
setReportFile | public void setReportFile(File reportFile)(Code) | | Sets the file that will contain the report results (i.e.
the results of the cartridge test run).
Parameters: reportFile - the file to which the report output will be written. |
startTest | public void startTest(Test test)(Code) | | |
startTestSuite | public void startTestSuite(String name)(Code) | | The testsuite started.
|
|
|