doc / ch.tutteli.atrium.domain.builders.creating.iterable.contains.builders

Package ch.tutteli.atrium.domain.builders.creating.iterable.contains.builders

Contains base classes for IterableContains.CheckerOption.

Types

AtLeastCheckerOptionBase

abstract class AtLeastCheckerOptionBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

The base class for builders which create a contains at least check within the fluent API of a sophisticated contains assertion for Iterable.

AtMostCheckerOptionBase

abstract class AtMostCheckerOptionBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

The base class for builders which create a contains at least once but at most check within the fluent API of a sophisticated contains assertion for Iterable.

ButAtMostCheckerOptionBase

abstract class ButAtMostCheckerOptionBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

The base class for builders which create the second step of a contains at least but at most check within the fluent API of a sophisticated contains assertion for Iterable.

ExactlyCheckerOptionBase

abstract class ExactlyCheckerOptionBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

The base class for builders which create a contains exactly check within the fluent API of a sophisticated contains assertion for Iterable.

NotCheckerOptionBase

abstract class NotCheckerOptionBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : IterableContains.CheckerOption<E, T, S>

The base class for builders which create a contains not check within the fluent API of a sophisticated contains assertion for Iterable.

NotOrAtMostCheckerOptionBase

abstract class NotOrAtMostCheckerOptionBase<out E, out T : Iterable<E>, out S : IterableContains.SearchBehaviour> : WithTimesCheckerOption<E, T, S>

The base class for builders which create a contains not or at most check within the fluent API of a sophisticated contains assertion for Iterable.

WithTimesCheckerOption

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

A IterableContains.CheckerOption which is used to choose a IterableContains.Checker which is based on a number of times.