If I have a Rhino Mock object that has already has a stub call declared on it like this:
mockEmploymentService.Stub(x => x.GetEmployment(999)).Return(employment);
Is there anyway I can remove this call to replace it with something different e.g.:
mockEmploymentService.Stub(x => x.GetEmployment(999)).Return(null);
The reason I ask is that I want to set up some generic mocks to be used in multiple unit tests and then allow each unit test to tailor the calls where necessary.