abstract class ContainsBuilder<out T : Any, S : ISearchBehaviour>
Represents the base class for builders representing the entry point of the process of building a sophisticated
contains
assertion.
T
- The type of the IAssertionPlant.subject.
S
- The type of the current IContains.ISearchBehaviour.
ContainsBuilder(plant: IAssertionPlant<T>, decorator: S)
Represents the base class for builders representing the entry point of the process of building a
sophisticated |
val decorator: S
The search behaviour which shall be applied to the input of the search. |
|
val plant: IAssertionPlant<T>
The IAssertionPlant for which the sophisticated |
class CharSequenceContainsBuilder<out T : CharSequence, S : ISearchBehaviour> : ContainsBuilder<T, S>
Represents the entry point of the fluent API of sophisticated |
|
class IterableContainsBuilder<out E, out T : Iterable<E>, S : ISearchBehaviour> : ContainsBuilder<T, S>
Represents the entry point of the fluent API of sophisticated |