|
|
fun <K, V> Map<K, V>.shouldBeEmpty(): Unit |
|
|
fun <K, V> Map<K, V>.shouldContain(key: K, value: V): Unit
infix fun <K, V> Map<K, V>.shouldContain(entry: Pair<K, V>): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldContainAll(expected: Map<K, V>): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldContainExactly(expected: Map<K, V>): Unit |
|
|
infix fun <K, V : Any> Map<K, V>.shouldContainKey(key: K): Unit |
|
|
fun <K, V> Map<K, V>.shouldContainKeys(vararg keys: K): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldContainValue(value: V): Unit |
|
|
fun <K, V> Map<K, V>.shouldContainValues(vararg values: V): Unit |
|
|
infix fun <K, V : Any> Map<K, V>.shouldHaveKey(key: K): Unit |
|
|
fun <K, V> Map<K, V>.shouldHaveKeys(vararg keys: K): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldHaveSize(size: Int): Unit |
|
|
fun <K, V> Map<K, V>.shouldHaveValues(vararg values: V): Unit |
|
|
fun <K, V> Map<K, V>.shouldNotBeEmpty(): Unit |
|
|
fun <K, V> Map<K, V>.shouldNotContain(key: K, value: V): Unit
infix fun <K, V> Map<K, V>.shouldNotContain(entry: Pair<K, V>): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldNotContainAll(expected: Map<K, V>): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldNotContainExactly(expected: Map<K, V>): Unit |
|
|
infix fun <K, V : Any> Map<K, V>.shouldNotContainKey(key: K): Unit |
|
|
fun <K, V> Map<K, V>.shouldNotContainKeys(vararg keys: K): Unit |
|
|
infix fun <K, V> Map<K, V>.shouldNotContainValue(value: V): Unit |
|
|
fun <K, V> Map<K, V>.shouldNotContainValues(vararg values: V): Unit |
|
|
infix fun <K, V : Any> Map<K, V>.shouldNotHaveKey(key: K): Unit |
|
|
fun <K, V> Map<K, V>.shouldNotHaveKeys(vararg keys: K): Unit |
|
|
fun <K, V> Map<K, V>.shouldNotHaveValues(vararg values: V): Unit |