为什么接口首选模拟?
我一直在研究使用 Moq 和 Rhino Mocks 进行模拟的示例,所有示例似乎都在模拟接口。这是为什么呢?我听说他们可以模拟静态类,但是非静态类呢?
I have been looking at examples of mocking using Moq and Rhino Mocks and all the examples seem to mock interfaces. Why is this? I have heard they can mock static classes, but what about non-static classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为:
Because:
因为这是 DynamicProxy 的限制(用于创建模拟对象的实例)。如果您使用接口,那么没有问题,但如果您想使用类,那么您应该将所有公共成员设为虚拟。
http://tiredblogger.wordpress .com/2008/05/06/moq-mocks-use-virtual-method-or-interfaces/
Because that was limitation of DynamicProxy (used to create instance of the mock object). Will be no problem if you using interface, but If you want to use class then you should make all public member virtual.
http://tiredblogger.wordpress.com/2008/05/06/moq-mocks-use-virtual-method-or-interfaces/