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