Hi,
Thanks for pointing this out. A Better way would be to use the TMockRunner, this will allow you to change the Coverage per run.
:arrow: BTW there is no need to call VerifyMode.PassIfNotCalled when using RepeatAlways, as RepeatAlways doesn't fail if the call was never called.
To validate that a call was called at least once, you would have to use:
Repeat(1);
and then anther
RepeatAlways();
:idea: As we haven't recieved any requests for this, I guess that nobody really validates calls with an 'at least' logic.