interface CollectionAssertions
Defines the minimum set of assertion functions and builders applicable to Collection, which an implementation of the domain of Atrium has to provide.
abstract fun |
|
abstract fun isEmpty(subjectProvider: SubjectProvider<Collection<*>>): Assertion |
|
abstract fun isNotEmpty(subjectProvider: SubjectProvider<Collection<*>>): Assertion |
|
abstract fun <T : Collection<*>> size(expect: Expect<T>): ExtractedFeaturePostStep<T, Int> abstract fun |
object CollectionAssertionsBuilder : CollectionAssertions
Delegates inter alia to the implementation of CollectionAssertions. In detail, it implements CollectionAssertions by delegating to collectionAssertions which in turn delegates to the implementation via loadSingleService. |