infix fun <E : Comparable<E>, T : Iterable<E>> Expect<T>.min(o: o): Expect<E>
(source)
Creates an Expect for the result of calling min()
on the subject of this
expectation,
so that further fluent calls are assertions about it.
o
- The filler object o.
Return
The newly created Expect for the extracted feature.
Since
0.12.0
infix fun <E : Comparable<E>, T : Iterable<E>> Expect<T>.min(assertionCreator: Expect<E>.() -> Unit): Expect<T>
(source)
Expects that the result of calling min()
on the subject of this
expectation
holds all assertions the given assertionCreator creates for it and
returns an Expect for the current subject of this
expectation.
Return
an Expect for the subject of this
expectation.
Since
0.12.0