doc / ch.tutteli.atrium.assertions.iterable.contains.checkers / IterableContainsAtLeastChecker

IterableContainsAtLeastChecker

class IterableContainsAtLeastChecker : IterableContainsChecker
Deprecated: Use IterableContainsCheckers.newAtLeastChecker; will be removed with 1.0.0

Represents a check that an expected entry is contained at least times in the Iterable.

Parameters

times - The number which the check uses to compare against the actual number of times an expected object is found in the input of the search.

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.

Exceptions

IllegalArgumentException - In case times is smaller than 1.

Constructors

<init>

IterableContainsAtLeastChecker(times: Int, nameContainsNotFun: String, atLeastCall: (Int) -> String)

Represents a check that an expected entry is contained at least times in the Iterable.

Functions

createAssertion

fun createAssertion(foundNumberOfTimes: Int): Assertion