doc / ch.tutteli.atrium.logic.creating.iterable.contains.checkers.impl / DefaultAtLeastChecker

DefaultAtLeastChecker

class DefaultAtLeastChecker : AtLeastChecker, ContainsChecker (source)

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 Iterable.

nameContainsNotFun - The function which should be used instead of atLeastCall when times is zero.

atLeastCall - The function which was used and should not be used if times is zero.

Exceptions

IllegalArgumentException - In case times is smaller than 1.

Constructors

<init>

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

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

Properties

atLeastCall

val atLeastCall: (Int) -> String

The function which was used and should not be used if times is zero.

nameContainsNotFun

val nameContainsNotFun: String

The function which should be used instead of atLeastCall when times is zero.

Functions

createAssertion

fun createAssertion(foundNumberOfTimes: Int): Assertion

Creates an Assertion representing this check based on the given foundNumberOfTimes which is the result of the search.

Inherited Functions

createDescriptiveAssertion

fun createDescriptiveAssertion(description: Translatable, check: () -> Boolean): DescriptiveAssertion

Creates a DescriptiveAssertion based on the given description, the property times as Text and the given check.