Package net.jqwik.api.statistics
Interface StatisticsReportFormat
-
- All Known Implementing Classes:
Histogram
,NumberRangeHistogram
,StatisticsReport.None
@API(status=EXPERIMENTAL, 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:
StatisticsReport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>
formatReport(java.util.List<StatisticsEntry> entries)
Return a list of report lines.
-
-
-
Method Detail
-
formatReport
java.util.List<java.lang.String> formatReport(java.util.List<StatisticsEntry> entries)
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:
StatisticsEntry
-
-