fun <T> values(value: T, vararg otherValues: T): Values<T>
(source)
Helper function to create a Values based on the given value and otherValues
-- allows to express T, vararg T
.
infix fun <K, V, T : Map<out K, V>> Expect<T>.values(assertionCreator: Expect<Collection<V>>.() -> Unit): Expect<T>
(source)
Expects that the property Map.keys of 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.
val <V, T : Map<*, V>> Expect<T>.values: Expect<Collection<V>>
(source)
Creates an Expect for the property Map.values of the subject of this
expectation,
so that further fluent calls are assertions about it.
Return
The newly created Expect for the extracted feature.