Hi and first of all a huge thanks for your library!
While using it to test asynchronous code I found a minor oversight:
fun after(millis: Long): VerificationAfterDelay? {
return Mockito.after(millis)
}
The return type is nullable. This gives me an compile error when using it in verify().
Or is this maybe intented?
Kind regards
Daniel