如何使用 NMock2 模拟内部接口?
如果我尝试这样做,我只会得到一个例外:
System.TypeLoadException : Access is denied: 'Namespace.IInternalInterface'.
公开接口不是一个可接受的解决方案。我不想为了测试 API 而改变它的可见性。
If I try this, I just get an exception:
System.TypeLoadException : Access is denied: 'Namespace.IInternalInterface'.
Making the interface public is not an acceptable solution. I don't want to change the visiblity of my API in order to test it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到并记录了解决方案。
http://www.rhyous.com/2012/05/03/ nmock2-internal-interface/
原来是 NMock2 的较新版本(我在这里得到的: NMock2 项目)只需要一个,而且它是不同的。
Found and documented the solution.
http://www.rhyous.com/2012/05/03/nmock2-internal-interface/
Turns out that the newer version of NMock2 (I got it here: NMock2 Project) only needs one and it is different.
我找到了答案:
NMock2(以及其他模拟框架)。将在动态生成的程序集中创建模拟对象。为了让模拟框架创建模拟对象,内部结构应该对这些程序集可见。
只需将以下声明添加到待测试模块的 AssemblyInfo.cs 类中:
I found the answer to this:
NMock2, (and other mocking frameworks). Will create the mock objects in dynamically generated assemblies. In order for the mocking framework to create the mock object, the internals should be visible to these assemblies.
Just add the following declarations to the AssemblyInfo.cs class for the Module Under Test: