I\'m trying to find a way to fake the result of a method called from within another method.
I have a \"LoadData\" method which calls a separate helper to get some data a
As far as I know, you should create an interface or a base abstract class for the Helper object. With Rhino Mocks you can then return the value you want.
Alternatively, you can add an overload for LoadData that accepts as parameters the data that you normally retrieve from the Helper object. This might even be easier.