Search Results

3
votes
2answers
212 views

Moq: how to assert that methods on my mock object are NOT run?

I have mocks working where I test that methods on my mocked object are called with the correct parameters, and return the right result. Now I want to check another condition. In this case, …