使用 NMock2 创建类型的实例
我遇到这种情况:
一种需要 Type
作为其参数之一的方法; 这个Type
必须是在项目中实现Interface
的Type
; 我需要为这个方法编写测试; 我正在使用NMock2;
有没有办法从 NMock2 获取类型,以便我可以将其用作此方法的参数,而不是创建此接口的实现?
谢谢!
I have this situation:
A method that expects a Type
as one of its parameter;
This Type
must be a Type
that implements an Interface
in the project;
I need to write tests for this method;
I'm using NMock2;
Is there any way to get a Type from NMock2 so I can use it as a parameter of this method instead of create an implementation of this interface?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我更喜欢使用 Moq,但据我所知,您应该能够检索到假货并按如下方式使用它:
I prefer using Moq, but from what I can see, you should be able to retrieve a fake and use it like follows: