Has anyone successfully utilized mockito-kotlin an...
# test
a
Has anyone successfully utilized mockito-kotlin and lambdas? Currently, I have a test that performs a verification like this:
verify(modelMock).methodToVerify(lambda)
And it is failing with a verification exception. I believe I’ve seen this before. I am unable to run the test with my suite (and have marked it with
@Ignore
. Just wondering if anyone else has experienced this.