.NET Moles Stub 失效行为

发布于 2024-11-19 15:39:40 字数 278 浏览 4 评论 0原文

.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 技术交流群。

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

发布评论

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

评论(1

叶落知秋 2024-11-26 15:39:40

手册中的“部分存根”对此进行了解释。您想要的是 CallBase,它是 Moles 存根的属性:

var stub = new SMyInstance() {CallBase = true};  

或者

stub.CallBase = true;

希望有帮助。

It is explained in the manual at "Partial Stubs". What you want is CallBase, which is a property of Stubs of Moles :

var stub = new SMyInstance() {CallBase = true};  

or

stub.CallBase = true;

Hope this help.

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