How do I verify that method was NOT called in Moq?
Does it have something like AssertWasNotCalled?
UPDATE: Starting from Version 3.0, a new syntax can be us
Use .AtMostOnce();
After the real test, call the method again. If it throws an exception, it was called.