Package-level declarations
Contains base classes which can be handy to implement Contains.Creator
.
Types
Link copied to clipboard
abstract class ContainsAssertionCreator<T : Any, TT : Any, in SC, C : Contains.Checker>(searchBehaviour: Contains.SearchBehaviour, checkers: List<C>) : Contains.Creator<T, SC>
Represents the base class for Contains.Creators, providing a template to fulfill its job.
Link copied to clipboard
abstract class ContainsObjectsAssertionCreator<T : Any, TT : Any, in SC, S : Contains.SearchBehaviour, C : Contains.Checker>(searchBehaviour: S, checkers: List<C>) : ContainsAssertionCreator<T, TT, SC, C>
Represents the base class for Contains.Creators which use bare objects as search criteria (matching them with ==
).