为什么接口首选模拟?

发布于 2024-09-17 12:26:21 字数 83 浏览 4 评论 0原文

我一直在研究使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

做个少女永远怀春 2024-09-24 12:26:21

因为:

  1. 对象上的所有方法都需要是虚拟的,以便模拟它们。
  2. 您的模拟仍然需要执行真实对象的构造函数、传递参数并运行其中的逻辑,这可能会很痛苦。

Because:

  1. All methods on your object would need to be virtual in order to mock them
  2. Your mock would still need to execute the constructor of the real object, pass parameters and run the logic inside it, which can be painful.
野心澎湃 2024-09-24 12:26:21

因为这是 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文