abstract class IterableContainsCheckerBuilder<E, T : Iterable<E>, S : ISearchBehaviour> : ContainsCheckerBuilder<T, S, IChecker, IterableContainsBuilder<E, T, S>>
The base class for builders which create ICheckers within the fluent API of a sophisticated
contains
assertion which was started with the given containsBuilder.
T
- The input type of the search.
S
- The search behaviour which should be applied for the input of the search.
IterableContainsCheckerBuilder(containsBuilder: IterableContainsBuilder<E, T, S>)
The base class for builders which create ICheckers within the fluent API of a sophisticated
|
abstract val checkers: List<C>
Contains all ICheckers which should be applied to the search result. |
|
val containsBuilder: B
The builder representing the entry point of the process of building a sophisticated
|
fun addAssertion(assertion: IAssertion): IAssertionPlant<T>
Helper method to simplify adding assertions to the plant which itself is stored in containsBuilder. |
fun <E : Any, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.eintraege(assertionCreator: IAssertionPlant<E>.() -> Unit, vararg otherAssertionCreators: IAssertionPlant<E>.() -> Unit): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E : Any, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.eintrag(assertionCreator: IAssertionPlant<E>.() -> Unit): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E : Any, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.entries(assertionCreator: IAssertionPlant<E>.() -> Unit, vararg otherAssertionCreators: IAssertionPlant<E>.() -> Unit): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E : Any, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.entry(assertionCreator: IAssertionPlant<E>.() -> Unit): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.object(expected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.objects(expected: E, vararg otherExpected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.objekt(expected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.objekte(expected: E, vararg otherExpected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.value(expected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.values(expected: E, vararg otherExpected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.wert(expected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
|
fun <E, T : Iterable<E>> IterableContainsCheckerBuilder<E, T, IterableContainsInAnyOrderSearchBehaviour>.werte(expected: E, vararg otherExpected: E): IAssertionPlant<T>
Finishes the specification of the sophisticated |
abstract class IterableContainsAtLeastCheckerBuilderBase<E, T : Iterable<E>, S : ISearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
The base class for builders which create a |
|
abstract class IterableContainsAtMostCheckerBuilderBase<E, T : Iterable<E>, S : ISearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
The base class for builders which create a |
|
abstract class IterableContainsButAtMostCheckerBuilderBase<E, T : Iterable<E>, S : ISearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
The base class for builders which create the second step of a |
|
abstract class IterableContainsExactlyCheckerBuilderBase<E, T : Iterable<E>, S : ISearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
The base class for builders which create a |
|
class IterableContainsNoOpCheckerBuilder<E, T : Iterable<E>, S : ISearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
Represents a "no IIterableContains.IChecker" option, meaning no checker shall be applied to a search result. |
|
abstract class IterableContainsNotOrAtMostCheckerBuilderBase<E, T : Iterable<E>, S : ISearchBehaviour> : IterableContainsCheckerBuilder<E, T, S>
The base class for builders which create a |