abstract class IterableContainsInAnyOrderOnlyAssertionCreator<E, T : Iterable<E>, S> : ICreator<T, S>
Represents the base class for in any order only
assertion creators and provides a corresponding template to fulfill
its responsibility.
T
- The type of the IAssertionPlant.subject for which the contains
assertion is be build.
S
- The type of the search criterion.
IterableContainsInAnyOrderOnlyAssertionCreator(searchBehaviour: IterableContainsInAnyOrderOnlySearchBehaviour)
Represents the base class for |
abstract fun createAssertionForSearchCriterionAndRemoveMatchFromList(searchCriterion: S, list: MutableList<E>): <ERROR CLASS><Boolean, IAssertion> |
|
fun createAssertionGroup(plant: IAssertionPlant<T>, searchCriterion: S, otherSearchCriteria: Array<out S>): IAssertionGroup
Creates an IAssertionGroup representing the sophisticated |
class IterableContainsInAnyOrderOnlyEntriesAssertionCreator<E : Any, T : Iterable<E>> : IterableContainsInAnyOrderOnlyAssertionCreator<E, T, IAssertionPlant<E>.() -> Unit>
Represents a creator of a sophisticated |
|
class IterableContainsInAnyOrderOnlyObjectsAssertionCreator<E, T : Iterable<E>> : IterableContainsInAnyOrderOnlyAssertionCreator<E, T, E>
Represents a creator of a sophisticated |