Package net.jqwik.api.statistics
Interface StatisticsCoverage.CoverageChecker
- 
- Enclosing interface:
- StatisticsCoverage
 
 public static interface StatisticsCoverage.CoverageChecker
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcount(java.util.function.BiConsumer<java.lang.Integer,java.lang.Integer> countChecker)Check the number of occurrences using one or more assertions.voidcount(java.util.function.BiPredicate<java.lang.Integer,java.lang.Integer> countChecker)Check the number of occurrences using one or more assertions.voidcount(java.util.function.Consumer<java.lang.Integer> countChecker)Check the number of occurrences returning true (ok) or false (fail).voidcount(java.util.function.Predicate<java.lang.Integer> countChecker)Check the number of occurrences returning true (ok) or false (fail)voidpercentage(java.util.function.Consumer<java.lang.Double> percentageChecker)Check the number of occurrences returning true (ok) or false (fail).voidpercentage(java.util.function.Predicate<java.lang.Double> percentageChecker)Check the percentage of occurrences returning true (ok) or false (fail)
 
- 
- 
- 
Method Detail- 
countvoid count(java.util.function.Predicate<java.lang.Integer> countChecker) Check the number of occurrences returning true (ok) or false (fail)- Parameters:
- countChecker- a predicate to accept a selected value set's number of occurrences
 
 - 
countvoid count(java.util.function.BiPredicate<java.lang.Integer,java.lang.Integer> countChecker) Check 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
 
 - 
countvoid count(java.util.function.Consumer<java.lang.Integer> countChecker) Check the number of occurrences returning true (ok) or false (fail).- Parameters:
- countChecker- a predicate to accept a selected value set's number of occurrences
 
 - 
countvoid count(java.util.function.BiConsumer<java.lang.Integer,java.lang.Integer> countChecker) Check 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
 
 - 
percentagevoid percentage(java.util.function.Predicate<java.lang.Double> percentageChecker) Check 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
 
 - 
percentagevoid percentage(java.util.function.Consumer<java.lang.Double> percentageChecker) Check 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
 
 
- 
 
-