doc / ch.tutteli.atrium.domain.creating.iterable.contains.checkers / CheckerFactory / newExactlyChecker

newExactlyChecker

abstract fun newExactlyChecker(times: Int, nameContainsNotFun: String, exactlyCall: (Int) -> String): IterableContains.Checker

Creates a IterableContains.Checker which verifies that an expected entry is contained exactly times in the Iterable.

Parameters

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.

Exceptions

IllegalArgumentException - In case times is smaller than 1.