IterableContainsInAnyOrderEntriesAssertionCreator
|
class IterableContainsInAnyOrderEntriesAssertionCreator<E : Any, T : Iterable<E>> : ContainsAssertionCreator<T, IAssertionPlant<E>.() -> Unit, IChecker>, ICreator<T, IAssertionPlant<E>.() -> Unit>
Represents a creator of a sophisticated contains assertions for Iterable where an expected entry can appear
in any order and is identified by holding a group of assertions, created by an assertion creator lambda.
|
IterableContainsInAnyOrderObjectsAssertionCreator
|
class IterableContainsInAnyOrderObjectsAssertionCreator<S, T : Iterable<S>> : ContainsObjectsAssertionCreator<T, S, IterableContainsInAnyOrderSearchBehaviour, IChecker>, ICreator<T, S>
Represents a creator of a sophisticated contains assertions for Iterable where an expected entry can appear
in any order and is identified by expected objects (equality comparison).
|
IterableContainsInAnyOrderOnlyAssertionCreator
|
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.
|
IterableContainsInAnyOrderOnlyEntriesAssertionCreator
|
class IterableContainsInAnyOrderOnlyEntriesAssertionCreator<E : Any, T : Iterable<E>> : IterableContainsInAnyOrderOnlyAssertionCreator<E, T, IAssertionPlant<E>.() -> Unit>
Represents a creator of a sophisticated contains assertions for Iterable where exactly the expected entries have
to appear in the Iterable but in any order -- an entry is identified by holding a group of assertions
created by an assertion creator lambda.
|
IterableContainsInAnyOrderOnlyObjectsAssertionCreator
|
class IterableContainsInAnyOrderOnlyObjectsAssertionCreator<E, T : Iterable<E>> : IterableContainsInAnyOrderOnlyAssertionCreator<E, T, E>
Represents a creator of a sophisticated contains assertions for Iterable where exactly the expected entries have
to appear in the Iterable but in any order -- an entry is identified by an expected object (equality comparison).
|
IterableContainsInOrderOnlyAssertionCreator
|
abstract class IterableContainsInOrderOnlyAssertionCreator<E, T : Iterable<E>, S> : ICreator<T, S>
Represents the base class for in order only assertion creators and provides a corresponding template to fulfill
its responsibility.
|
IterableContainsInOrderOnlyEntriesAssertionCreator
|
class IterableContainsInOrderOnlyEntriesAssertionCreator<E : Any, T : Iterable<E>> : IterableContainsInOrderOnlyAssertionCreator<E, T, IAssertionPlant<E>.() -> Unit>
Represents a creator of a sophisticated contains assertions for Iterable where exactly the expected entries
have to appear in the specified order and where an entry is identified by holding a group of assertions,
created by an assertion creator lambda.
|
IterableContainsInOrderOnlyObjectsAssertionCreator
|
class IterableContainsInOrderOnlyObjectsAssertionCreator<E, T : Iterable<E>> : IterableContainsInOrderOnlyAssertionCreator<E, T, E>
Represents a creator of a sophisticated contains assertions for Iterable where exactly the expected entries
have to appear in the specified order and where an entry is identified by an expected object (equality comparison).
|