Package net.jqwik.api.statistics
Interface StatisticsCoverage.CoverageChecker
- Enclosing interface:
- StatisticsCoverage
public static interface StatisticsCoverage.CoverageChecker
- 
Method SummaryModifier and TypeMethodDescriptionvoidcount(BiConsumer<Integer, Integer> countChecker) Check the number of occurrences using one or more assertions.voidcount(BiPredicate<Integer, Integer> countChecker) Check the number of occurrences using one or more assertions.voidCheck the number of occurrences returning true (ok) or false (fail).voidCheck the number of occurrences returning true (ok) or false (fail)voidpercentage(Consumer<Double> percentageChecker) Check the number of occurrences returning true (ok) or false (fail).voidpercentage(Predicate<Double> percentageChecker) Check the percentage of occurrences returning true (ok) or false (fail)
- 
Method Details- 
countCheck the number of occurrences returning true (ok) or false (fail)- Parameters:
- countChecker- a predicate to accept a selected value set's number of occurrences
 
- 
countCheck the number of occurrences using one or more assertions.- Parameters:
- countChecker- a consumer to accept a selected value set's number of occurrences and the count of all submitted value sets to compare with or make a calculation
 
- 
countCheck the number of occurrences returning true (ok) or false (fail).- Parameters:
- countChecker- a predicate to accept a selected value set's number of occurrences
 
- 
countCheck the number of occurrences using one or more assertions.- Parameters:
- countChecker- a predicate to accept a selected value set's number of occurrences and the count of all submitted value sets to compare with or make a calculation
 
- 
percentageCheck the percentage of occurrences returning true (ok) or false (fail)- Parameters:
- percentageChecker- a predicate to accept a selected value set's percentage (0.0 - 100.0) of occurrences
 
- 
percentageCheck the number of occurrences returning true (ok) or false (fail).- Parameters:
- percentageChecker- a predicate to accept a selected value set's percentage (0.0 - 100.0) of occurrences
 
 
-