doc / ch.tutteli.atrium.assertions.iterable.contains.builders / IterableContainsNotOrAtMostCheckerBuilderBase

IterableContainsNotOrAtMostCheckerBuilderBase

abstract class IterableContainsNotOrAtMostCheckerBuilderBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
Deprecated: Use the abstract class from package creating; will be removed with 1.0.0

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.

Parameters

T - The input type of the search.

S - The search behaviour which should be applied for the input of the search.

Constructors

<init>

IterableContainsNotOrAtMostCheckerBuilderBase(times: Int, containsBuilder: IterableContainsBuilder<E, T, S>, nameContainsNotFun: String, notOrAtMostCall: (Int) -> String)

The base class for builders which create a contains at most check within the fluent API of a sophisticated contains assertion for Iterable.

Properties

checkers

open val checkers: List<IterableContains.Checker>

containsBuilder

open val containsBuilder: IterableContainsBuilder<E, T, S>

The previously used IterableContainsBuilder.

times

val times: Int

The number which the check will compare against the actual number of times an expected entry is found in the Iterable.