doc / ch.tutteli.atrium.domain.creating.basic.contains / Contains / Creator

Creator

interface Creator<in T : Any, in SC>

Represents the final step of a sophisticated contains assertion builder which creates the AssertionGroup as such.

Parameters

T - The type of the subject of the assertion.

SC - The type of the search criteria.

Functions

createAssertionGroup

abstract fun createAssertionGroup(subjectProvider: SubjectProvider<T>, searchCriteria: List<SC>): AssertionGroup

Creates an AssertionGroup representing the sophisticated contains assertion for the subject the given subjectProvider provides, based on the given searchCriteria.

Inheritors

Creator

interface Creator<in T : CharSequence, in SC> : Contains.Creator<T, SC>

Represents the final step of a sophisticated contains assertion builder which creates the AssertionGroup as such.

Creator

interface Creator<in T : Iterable<*>, in SC> : Contains.Creator<T, SC>

Represents the final step of a sophisticated contains assertion builder which creates the AssertionGroup as such.

Creator

interface Creator<in T : Any, in SC> : Contains.Creator<T, SC>