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