I just spent some time trying to understand why my...
# mockk
m
I just spent some time trying to understand why my test is failing when debugging it but works in regular run. And realized that
confirmVerified(mock)
was not satisfied due to some additional
toString()
calls which I presume was called whenever I stopped at breakpoint. Is there anything that can be done to avoid such calls being recorded? I know I can use
excludeRecords
, but I mean something that would automatically make the debugger calls not being counted.
😮 1