This interface defines the methods that can be used to implement different coverage tools.
| Type | Name and description |
|---|---|
void |
check(CoverageChecking checking)Checks the coverage results. |
void |
generateReport(Reporting reporting)Generates the coverage report. |
void |
instrument(Instrumentation instrumentation)Instrument the classes. |
void |
merge(java.lang.String dataFile, java.util.List<java.lang.String> reports)Merges the reports into the data file. |
Checks the coverage results.
checking - is the coverage checking configuration.Generates the coverage report.
reporting - is the reporting configurationInstrument the classes.
instrumentation - Instrumentation configuration.Merges the reports into the data file.
dataFile - destination file for the reports, when empty or null the coverage tool default is used.reports - list of reports to merge.