can someone explain this please, using `Matchers....
# announcements
m
can someone explain this please, using
Matchers.any()
from Mockito in testing will not work and it will throw
java.lang.IllegalStateException: any() must not be null
but, making a new function returning the the same method will work
fun <T> anyKotlin(): T = Mockito.any<T>()