Package-level declarations

Contains (default) implementations for the interfaces defined in ch.tutteli.atrium.logic.creating.charsequence.contains.checkers.

Types

Link copied to clipboard
class DefaultAtLeastChecker(times: Int, val nameContainsNotFun: String, val atLeastCall: (Int) -> String) : ContainsChecker, AtLeastChecker

Represents a check that an expected search criterion is contained at least times in the search input.

Link copied to clipboard
class DefaultAtMostChecker(times: Int, val nameContainsNotFun: String, val atMostCall: (Int) -> String) : ContainsChecker, AtMostChecker

Represents a check that an expected search criterion is contained at most times in the search input.

Link copied to clipboard
class DefaultExactlyChecker(times: Int, val nameContainsNotFun: String, val exactlyCall: (Int) -> String) : ContainsChecker, ExactlyChecker

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

Link copied to clipboard

Represents a check that an expected search criterion is not contained in the search input.