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, NO methods should be run on the mocked object. How can I express this in a unit test?