class DefaultExactlyChecker : ExactlyChecker, ContainsChecker
Represents a check that an expected entry is contained exactly times in the Iterable.
times
- The number which the check uses to compare against the actual number of times an expected entry is
found in the Iterable.
nameContainsNotFun
- The function which should be used instead of exactlyCall
when times equals to zero.
exactlyCall
- The function call which was used and should not be used if times equals to zero.
IllegalArgumentException
- In case times is smaller than 1.
DefaultExactlyChecker(times: Int, nameContainsNotFun: String, exactlyCall: (Int) -> String)
Represents a check that an expected entry is contained exactly times in the Iterable. |
val exactlyCall: (Int) -> String
The function call which was used and should not be used if times equals to zero. |
|
val nameContainsNotFun: String
The function which should be used instead of |
fun createAssertion(foundNumberOfTimes: Int): Assertion
Creates an Assertion representing this check based on the given foundNumberOfTimes which is the result of the search. |
fun createDescriptiveAssertion(description: Translatable, check: () -> Boolean): DescriptiveAssertion
Creates a DescriptiveAssertion based on the given description, the property times as Text and the given check. |