Interface TestReportProcessor
- All Known Implementing Classes:
SimpleTestReportProcessor, SVGAccuracyTestProcessor, XMLTestReportProcessor
public interface TestReportProcessor
Interface for classes that can process
TestReport instances
This allows different applications to use the same TestReport
for different purposes, such as generating an XML output or
emailing a test result summary.- Version:
- $Id$
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidprocessReport(TestReport report) Requests the processor to process the inputTestReportinstances.
-
Field Details
-
INTERNAL_ERROR
-
-
Method Details
-
processReport
Requests the processor to process the inputTestReportinstances. Note that a processor should make its own copy of any resource described by aTestReportsuch as files, as these may be transient resources. In particular, a processor should not keep a reference to the inputTestReport- Throws:
TestException
-