doc / ch.tutteli.atrium.assertions.iterable.contains / IterableContains / SearchBehaviour

SearchBehaviour

interface SearchBehaviour : SearchBehaviour, SearchBehaviour (source)
Deprecated: use the interface from package domain.creating, will be removed with 1.0.0

Represents a search behaviour but leaves it up to the Creator how this behaviour is implemented -- yet, it provides a method to decorate a description (a Translatable) in order that it reflects the search behaviour.

Inheritors

IterableContainsInAnyOrderOnlySearchBehaviour

open class IterableContainsInAnyOrderOnlySearchBehaviour : SearchBehaviour, InAnyOrderOnlySearchBehaviour

Represents the deprecated search behaviour that expected entries might appear in any order within the Iterable but that the resulting assertion should not hold if there are less entries than expected or more.

IterableContainsInAnyOrderSearchBehaviour

open class IterableContainsInAnyOrderSearchBehaviour : SearchBehaviour, InAnyOrderSearchBehaviour

Represents the deprecated search behaviour that expected entries might appear in any order within the Iterable.

IterableContainsInOrderOnlySearchBehaviour

open class IterableContainsInOrderOnlySearchBehaviour : SearchBehaviour, InOrderOnlySearchBehaviour

Represents the deprecated search behaviour that expected entries have to appear in the given order within the Iterable and that the resulting assertion should not hold if there are less entries than expected or more.

IterableContainsInOrderSearchBehaviour

open class IterableContainsInOrderSearchBehaviour : SearchBehaviour, InOrderSearchBehaviour

Represents the deprecated search behaviour that expected entries have to appear in the given order within the Iterable.

IterableContainsNoOpSearchBehaviour

open class IterableContainsNoOpSearchBehaviour : SearchBehaviour, NoOpSearchBehaviour

Represents the deprecated default search behaviour or rather does not define a search behaviour at all.