I am trying to do this: ```interface EventDispatch...
# test
d
I am trying to do this:
Copy code
interface EventDispatcher {
    fun dispatch(event: Event)
}
Copy code
Mockito
    .doNothing()
    .`when`(eventDispatcher)
    .dispatch(Mockito.any())
and getting
java.lang.IllegalStateException: Mockito.any() must not be null