You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are good assertions on individual items in maps but not a clean way to do assertions on all keys or all values in a map. So i propose the following methods be added:
fun <K> Assert<Map<K, *>>.keys() : Assert<Set<K>> = ...
fun <V> Assert<Map<*, V>>.values() : Assert<Collection<V>> = ...
The text was updated successfully, but these errors were encountered:
There are good assertions on individual items in maps but not a clean way to do assertions on all keys or all values in a map. So i propose the following methods be added:
The text was updated successfully, but these errors were encountered: