Package net.jqwik.api.statistics
Interface StatisticsReportFormat
- All Known Implementing Classes:
Histogram
,NumberRangeHistogram
,StatisticsReport.None
@API(status=MAINTAINED,
since="1.2.3")
public interface StatisticsReportFormat
An implementation of this interface is responsible for creating
a formatted statistics report.
Implementation of this class must have a public default constructor to be usable in StatisticsReport.format()
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionformatReport
(List<StatisticsEntry> entries) Return a list of report lines.
-
Method Details
-
formatReport
Return a list of report lines. Often, one line will represent one entry but that must not necessarily be the case.- Returns:
- All report lines. No trailing `CR` or `LF` characters are needed.
- See Also:
-