vote up 3 vote down star
1

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?

flag

67% accept rate

2 Answers

vote up 6 vote down check

You could create your mock as strict. That way only the methods you Setup (or Expect, depending on which version of Moq you're playing with) are allowed to be run.

var foo = new Mock<IFoo>(MockBehavior.Strict);
foo.Expect(f => f.Bar());

Any time a method is called on foo other than Bar(), an exception will be raised and your test will fail.

link|flag
Thanks! I wasn't sure what to look for in the documentation (as little as there is). – David White Jan 29 at 3:12
vote up 1 vote down

The two most straightforward way would be to use MockBehaviour.Strict:

var moqFoo = new Mock<IFoo>(MockBehaviour.Strict);  
//any calls to methods that there aren't expectations set for will cause exceptions

or you could always use a callback and throw an exception from there (if there is a specific method that should not be called.

var moqFoo = new Mock<IFoo>(MockBehaviour.Loose);  
//any calls to methods that there aren't expectations set for will cause exceptions
moqFoo.Expect(f => f.Bar()).Callback(throw new ThisShouldNotBeCalledException());
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.