我的单元测试中有这段代码:
var file = m_Mockery.NewMock<IFile>();
Stream s = new MemoryStream();
Expect.Once.On( file ).Method( "OpenRead" )
.With( "someFile.mdb")
.Will( Return.Value( s ) );
...
...
...
// this runs the real code that contains the OpenRead call
productionCodeObj.DoIt("someFile.mdb");
m_Mockery.VerifyAllExpectationsHaveBeenMet();
问题是当我调用 DoIt(它调用 OpenRead)时,我得到一个异常,说找不到文件。我是否误解了 nmock 的作用?我不希望我的单元测试碰到真正的文件系统......