Suppose I have a context that is configured similar to:
Establish context = () =>
{
...
IFileProcesser processer = new FileProcesser();
The<IFileProcesser>()
.WhenToldTo(x => x.Read(Param<Stream>.IsAnything))
.Return<Stream>(processer.Read);
...
};
Is there a better way to tell Machine.Fakes to not fake IFileProcesser and use the implementation of FileProcesser?