vote up 1 vote down star

Hi,

Is it possible to create a "strict" mock using the new AAA syntax of Rhino Mocks? The issue I am seeing is that the library I am mocking often returns null as a valid return value (which I handle in my function), so using the default mock I can never be sure if I tested all paths or I forgot to set some expectations.

flag

2 Answers

vote up 2 vote down

MockRepository.GenerateMock<T>() should return a 'strict' mock - as opposed to MockRepository.GenerateStub<T>(), but couldn't you just define an explicit method setup that returns null?

link|flag
I can see only MockRepository.GenerateMock<T>(), but it doesn't work - unexpected calls still just return null. – Grzenio Oct 8 at 16:37
It just adds to the pain, because I have to debug the test every time I forget to setup the method to figure out which one was it. – Grzenio Oct 8 at 16:38
Sorry, I misremembered the name. Edited now. – Mark Seemann Oct 8 at 17:30
vote up 0 vote down check

I Rhino Mocks 3.6 we finally have: MockRepository.GenerateStrictMock<T>(). GenerateMock does not create strict mocks.

link|flag

Your Answer

Get an OpenID
or

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