Hello,
What I want to do is mock System.IO.Directory.Exists, to ensure that this method returns false, so that in my code, it enters the process of creating a new directory (through Directory.CreateDirectory method). I want to have typemock return a false value, and not call the CreateDirectory method.
However, If I use recorder.ExpectAndReturn method on the RecordExpectations object in natural approach, it says System.Boolean not supported with the ExpectAndReturn method (I also had no success with recorder.Return either).
How can I mock this statement?
Thanks.