Hi,
I'd like to know how to verify that a method was called x times.
I'm using
Isolate.Verify.WasCalledWithAnyArguments(() => myObj.MyMethod(arg1));
which verifies that at least 1 call was made, but that's not enough, I'd like to make sure that MyMethod was exactly called twice.
Any idea ?
Thanks,
Fabrice