when verifying that coroutine `async` function was...
# mockk
h
when verifying that coroutine
async
function was called is there any real difference between using
coVerify
vs
verify
. example
Copy code
coVerify { mockService.parseCarAsync("test1", "test2")}
and
Copy code
verify { mockService.parseCarAsync("test1", "test2")}