is it possible instead of ```coVerify(exactly = 1)...
# mockk
c
is it possible instead of
Copy code
coVerify(exactly = 1) { consumer.ack() }
to get the call count and assert with my assertionLib of choice? something like
Copy code
assertEquals(1, callCount { consumer.ack() })