将 NMock 与 ByRef 参数结合使用
我必须使用一个使用大量引用参数的 API。 我刚刚开始使用 NMock,并且很难了解如何使 NMock 实际将这些 by-ref 参数之一修改为特定值。 我是否错过了什么,或者它只是没有做到这一点? 除了封装这个API之外,还有更好的方法吗?
I have to work with an API that uses a lot of by-reference parameters. I'm just beginning to use NMock, and I'm having trouble seeing how to make NMock actually modify one of those by-ref parameters to a specific value. Am I missing something, or does it just not do that? Is there a better way, short of wrapping this API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此博客条目不可否认,从 C# 的角度来看, 似乎涵盖了一些内容。
基本上,您想使用
SetNamedParameterAction
调用Will()
。This blog entry appears to cover things, admittedly from a C# perspective.
Basically you want to call
Will()
with aSetNamedParameterAction
.