abstract fun newAtLeastChecker(times: Int, nameContainsNotFun: String, atLeastCall: (Int) -> String): IterableContains.Checker
Creates an IterableContains.Checker which verifies that an expected entry is contained at least 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 atLeastCall when times equals to zero.
atLeastCall
- The function which was used and should not be used if times equals to zero.
IllegalArgumentException
- In case times is smaller than 1.