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.
|
AtLeastCheckerOptionImpl
|
open class AtLeastCheckerOptionImpl<out E, out T : Iterable<E>, out S : InAnyOrderSearchBehaviour> : AtLeastCheckerOptionBase<E, T, S>, AtLeastCheckerOption<E, T, S>
Represents the builder of a contains at least check within the fluent API of a sophisticated
contains assertion 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.
|
AtMostCheckerOptionImpl
|
open class AtMostCheckerOptionImpl<out E, out T : Iterable<E>, out S : InAnyOrderSearchBehaviour> : AtMostCheckerOptionBase<E, T, S>, AtMostCheckerOption<E, T, S>
Represents the builder of a contains at least once but at most check within the fluent API of a
sophisticated contains assertion 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.
|
ButAtMostCheckerOptionImpl
|
open class ButAtMostCheckerOptionImpl<out E, out T : Iterable<E>, out S : InAnyOrderSearchBehaviour> : ButAtMostCheckerOptionBase<E, T, S>, ButAtMostCheckerOption<E, T, S>
Represents the builder of the second step of a contains at least but at most check within the
fluent API of a sophisticated contains assertion 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.
|
ExactlyCheckerOptionImpl
|
open class ExactlyCheckerOptionImpl<out E, out T : Iterable<E>, out S : InAnyOrderSearchBehaviour> : ExactlyCheckerOptionBase<E, T, S>, ExactlyCheckerOption<E, T, S>
Represents the builder of a contains exactly check within the fluent API of a sophisticated
contains assertion 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.
|
NotCheckerOptionImpl
|
open class NotCheckerOptionImpl<out E, out T : Iterable<E>, out S : InAnyOrderSearchBehaviour> : NotCheckerOptionBase<E, T, S>, NotCheckerOption<E, T, S>
Represents the builder of a contains not at all check within the fluent API of a sophisticated
contains assertion 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.
|
NotOrAtMostCheckerOptionImpl
|
open class NotOrAtMostCheckerOptionImpl<out E, out T : Iterable<E>, out S : InAnyOrderSearchBehaviour> : NotOrAtMostCheckerOptionBase<E, T, S>, NotOrAtMostCheckerOption<E, T, S>
Represents the builder of a contains not or at most check within the fluent API of a
sophisticated contains assertion for Iterable.
|