Is it possible to only verify a function call but ...
# mockk
a
Is it possible to only verify a function call but ignore the specific instance that a mocked function is being called with?
I mean I just moved the instance into the function parameters but still not the ideal solution. Any recommendations?
e
verify { functionToTest(any()) }
or am I missing something? 🙂 https://mockk.io/#matchers
👍 2