infix fun <E : Comparable<E>, T : Iterable<E>> Expect<T>.max(o: o): Expect<E>
Creates an Expect for the result of calling max()
on the subject of the assertion,
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>.max(assertionCreator: Expect<E>.() -> Unit): Expect<T>
Expects that the result of calling max()
on the subject of the assertion
holds all assertions the given assertionCreator creates for it and
returns an Expect for the current subject of the assertion.
AssertionError
- Might throw an AssertionError if the assertion made is not correct.
Return
An Expect for the current subject of the assertion.
Since
0.12.0