Package net.jqwik.api.statistics
Schnittstelle StatisticsCoverage.CoverageChecker
- Umschließende Schnittstelle:
StatisticsCoverage
public static interface StatisticsCoverage.CoverageChecker
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
count
(BiConsumer<? super Integer, ? super Integer> countChecker) Check the number of occurrences using one or more assertions.void
count
(BiPredicate<? super Integer, ? super Integer> countChecker) Check the number of occurrences using one or more assertions.void
Check the number of occurrences returning true (ok) or false (fail).void
Check the number of occurrences returning true (ok) or false (fail)void
percentage
(Consumer<? super Double> percentageChecker) Check the number of occurrences returning true (ok) or false (fail).void
percentage
(Predicate<? super Double> percentageChecker) Check the percentage of occurrences returning true (ok) or false (fail)
-
Methodendetails
-
count
Check the number of occurrences returning true (ok) or false (fail)- Parameter:
countChecker
- a predicate to accept a selected value set's number of occurrences
-
count
Check the number of occurrences using one or more assertions.- Parameter:
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
-
count
Check the number of occurrences returning true (ok) or false (fail).- Parameter:
countChecker
- a predicate to accept a selected value set's number of occurrences
-
count
Check the number of occurrences using one or more assertions.- Parameter:
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
-
percentage
Check the percentage of occurrences returning true (ok) or false (fail)- Parameter:
percentageChecker
- a predicate to accept a selected value set's percentage (0.0 - 100.0) of occurrences
-
percentage
Check the number of occurrences returning true (ok) or false (fail).- Parameter:
percentageChecker
- a predicate to accept a selected value set's percentage (0.0 - 100.0) of occurrences
-