Hi, is there a way to check which every {} is used...
# mockk
r
Hi, is there a way to check which every {} is used when a mock function is called? I’m using IntelliJ and my mocks are behaving strangely, I’m looking for a way to debug
l
You can check like this:
Copy code
verify(exactly = 1) { mockObj.callMethod() }
r
I’ll try when that question comes up again 🙂 I ended up finding what was happening with debug points outside of my mocks. Thank you!