Package org.apache.batik.test
Interface TestReportProcessor
-
- All Known Implementing Classes:
SimpleTestReportProcessor,SVGAccuracyTestProcessor,XMLTestReportProcessor
public interface TestReportProcessorInterface for classes that can processTestReportinstances This allows different applications to use the sameTestReportfor different purposes, such as generating an XML output or emailing a test result summary.- Version:
- $Id: TestReportProcessor.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINTERNAL_ERRORGeneric error code.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocessReport(TestReport report)Requests the processor to process the inputTestReportinstances.
-
-
-
Field Detail
-
INTERNAL_ERROR
static final java.lang.String INTERNAL_ERROR
Generic error code. Takes no parameter.- See Also:
- Constant Field Values
-
-
Method Detail
-
processReport
void processReport(TestReport report) throws TestException
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
-
-