fun <E : Comparable<E>, T : Iterable<E>> Expect<T>.min(assertionCreator: Expect<E>.() -> Unit): Expect<T>
Expects that the property min of the subject of the assertion holds all assertions the given assertionCreator creates for it and returns this assertion container.
AssertionError
- Might throw an AssertionError if the assertion made is not correct.
Return
This assertion container to support a fluent API.
Since
0.9.0
fun <E : Comparable<E>, T : Iterable<E>> Expect<T>.min(): Expect<E>
Creates an Expect for the property min of the subject of the assertion, so that further fluent calls are assertions about it.
Return
The newly created Expect.
Since
0.9.0