Malvin Sutanto
07/09/2019, 6:52 AMMap<String, String> what is the correct matcher to use?
fun foo(map: Map<String, String>): String {
...
}
every { foo(any()) } returns "mock"
I tried any() but it complains about type erasure. Tried with hint as well but no luck.