doc / ch.tutteli.atrium.api.fluent.en_GB.creating.iterable.contains.builders

Package ch.tutteli.atrium.api.fluent.en_GB.creating.iterable.contains.builders

Contains the builders -- necessary to provide an extensible fluent API -- which allow to create sophisticated contains assertions for Iterable.

Types

AtLeastCheckerOption

interface AtLeastCheckerOption<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

Represents the extension point for another option after a contains at least-check within a sophisticated contains assertion building process for Iterable.

AtMostCheckerOption

interface AtMostCheckerOption<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

Represents the extension point for another option after a contains at least once but at most-check within a sophisticated contains assertion building process for Iterable.

ButAtMostCheckerOption

interface ButAtMostCheckerOption<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

Represents the extension point for another option after a contains at least but at most-check within a sophisticated contains assertion building process for Iterable.

ExactlyCheckerOption

interface ExactlyCheckerOption<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

Represents the extension point for another option after a contains exactly-check within a sophisticated contains assertion building process for Iterable.

NotCheckerOption

interface NotCheckerOption<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : IterableContains.CheckerOption<E, T, S>

Represents the extension point for another option after a contains not at all-check within a sophisticated contains assertion building process for Iterable.

NotOrAtMostCheckerOption

interface NotOrAtMostCheckerOption<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

Represents the extension point for another option after a contains not or at most-check within a sophisticated contains assertion building process for Iterable.