doc / ch.tutteli.atrium.api.cc.en_UK.creating.charsequence.contains.builders / NotCheckerOptionImpl

NotCheckerOptionImpl

open class NotCheckerOptionImpl<out T : CharSequence, out S : SearchBehaviour> : NotCheckerOptionBase<T, S>, NotCheckerOption<T, S> (source)
Deprecated: Do not rely on this type; will be made internal with 1.0.0

Represents the builder of a contains not at all check within the fluent API of a sophisticated contains assertion for CharSequence.

Parameters

T - The input type of the search.

S - The search behaviour which should be applied for the input of the search.

Constructors

<init>

NotCheckerOptionImpl(containsBuilder: Builder<T, S>)

Represents the builder of a contains not at all check within the fluent API of a sophisticated contains assertion for CharSequence.

Inherited Properties

checkers

open val checkers: <ERROR CLASS>

Contains all Checkers which should be applied to the search result.

containsBuilder

open val containsBuilder: Builder<T, S>

The previously chosen Builder, containing inter alia the AssertionPlant to which the resulting Assertion shall be added.

Extension Properties

ignoringCase

val <T : CharSequence> NotCheckerOption<T, NotSearchBehaviour>.ignoringCase: NotCheckerOption<T, IgnoringCaseSearchBehaviour>

Defines that the decoration behaviour ignore case shall be applied to this sophisticated contains not assertion.

Extension Functions

addAssertion

fun <T : CharSequence, S : SearchBehaviour> CheckerOption<T, S>.addAssertion(assertion: Assertion): AssertionPlant<T>

Helper method to simplify adding assertions to the plant which itself is stored in CharSequenceContains.CheckerOption.containsBuilder.

Inheritors

CharSequenceContainsNotCheckerBuilder

open class CharSequenceContainsNotCheckerBuilder<out T : CharSequence, out S : SearchBehaviour> : NotCheckerOptionImpl<T, S>, CharSequenceContainsCheckerBuilder<T, S>

Represents the deprecated builder of a contains not at all check within the fluent API of a sophisticated contains assertion for CharSequence.