|
|
fun beEmpty(): Matcher<Map<*, *>> |
|
|
fun <K, V> contain(key: K, v: V): Matcher<Map<K, V>> |
|
|
fun <K, V> containAll(expected: Map<K, V>): Matcher<Map<K, V>> |
|
|
fun <K, V> containExactly(expected: Map<K, V>): Matcher<Map<K, V>> |
|
|
fun <K> haveKey(key: K): Matcher<Map<K, Any?>> |
|
|
fun <K> haveKeys(vararg keys: K): Matcher<Map<K, Any?>> |
|
|
fun <K, V> haveSize(size: Int): Matcher<Map<K, V>> |
|
|
fun <V> haveValue(v: V): Matcher<Map<*, V>> |
|
|
fun <V> haveValues(vararg values: V): Matcher<Map<*, V>> |
|
|
fun <K, V> mapcontain(key: K, v: V): Matcher<Map<K, V>> |