.NET Moles Stub 失效行为
.NET Moles 框架中是否可以像我们使用 Mole 类型那样在存根类型中使用 Fallthrough 行为?
我可以通过执行以下操作来覆盖 Mole 实例的默认行为:
MMyInstance.InstanceBehavior = MoleBehaviors.Fallthrough;
但是,对于 Stub 实例,我无法在 BehavedBehaviors 类中找到相应的行为。
我正在使用0.94版本,
谢谢 雨果·派斯
Is it possible in the .NET Moles framework to use the Fallthrough Behavior in Stub Types as we do with Mole Types?
I can override the default behavior of a Mole instance by doing:
MMyInstance.InstanceBehavior = MoleBehaviors.Fallthrough;
However for a Stub Instance i can´t find in the BehavedBehaviors class the corresponding behavior.
I'm using version 0.94
Thanks
Hugo Pais
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
手册中的“部分存根”对此进行了解释。您想要的是 CallBase,它是 Moles 存根的属性:
或者
希望有帮助。
It is explained in the manual at "Partial Stubs". What you want is CallBase, which is a property of Stubs of Moles :
or
Hope this help.