doc / ch.tutteli.atrium.assertions.charsequence.contains.checkers / CharSequenceContainsExactlyChecker

CharSequenceContainsExactlyChecker

class CharSequenceContainsExactlyChecker : CharSequenceContainsChecker

Represents a check that an expected object is contained exactly times in the search input.

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

Constructors

<init>

CharSequenceContainsExactlyChecker(times: Int, nameContainsNotFun: String, exactlyCall: (Int) -> String)

Represents a check that an expected object is contained exactly times in the search input.

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.