使用最小起订量模拟虚拟只读属性
我找不到办法做到这一点,尽管这可以手工完成,那么为什么不使用最小起订量呢?
I couldn't find a way to do this, though this can be done by hand so why not with moq?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
给定这个类,
您可以像这样设置 Foo (只读属性):
stub.Object.Foo 现在将返回“bar”而不是“foo”。
Given this class
you can set up Foo (a read-only property) like this:
stub.Object.Foo
will now return "bar" instead of "foo".您需要确保财产是虚拟的才能使其发挥作用。
You need to make sure property is virtual to make this work.