abstract class IterableContainsNotOrAtMostCheckerBuilderBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
(source)The base class for builders which create a contains not or at most
check within the fluent API of a
sophisticated contains
assertion for Iterable.
T
- The input type of the search.
S
- The search behaviour which should be applied for the input of the search.
IterableContainsNotOrAtMostCheckerBuilderBase(times: Int, containsBuilder: IterableContainsBuilder<E, T, S>, nameContainsNotFun: String, notOrAtMostCall: (Int) -> String)
The base class for builders which create a |
open val checkers: List<IterableContains.Checker> |
|
open val containsBuilder: IterableContainsBuilder<E, T, S>
The previously used IterableContainsBuilder. |
|
val times: Int
The number which the check will compare against the actual number of times an expected entry is found in the Iterable. |