What are the differences between mocks and stubs on Rhino Mocks?
As per this … Put simply there is a difference between Mock and Stub objects and RhinoMocks recognizes that allowing us to write tests that better state their purpose. Mock objects are used to define expectations i.e: In this scenario I expect method A() to be called with such and such parameters. Mocks record and … Read more