Is the following possible -
var stub1 = MockRepository.GenerateStub<stub1>();
var stub2 = MockRepository.GenerateStub<stub2>();
int returnValue = 1;
stub2.Stub(x => x.stub2Method(Arg<int>.Is.Anything).Return(returnValue).Repeat.Once();
Stub1.Stub(x =>x.stub1Method(Arg<int>.Is.Anything)).Repeat.Once().Return(stub2);
i.e. can a stub with expectations be returned from a stub?
In my code, when stub2.stub2Method is called from stub1.stub1Method, null is returned instead of returnValue.
Any idea why?