如何要求 RhinoMock 正确期望 Lambda 表达式
我正在使用 Rhino Mocks,但我不确定如何模拟采用 lambda 表达式的调用。情况如下:
实际方法:
public void MyMethod (int subtestId) {
var interview = _repository.FindOne(t => t.Survey.Subtests.SingleOrDefault(x => x.Id == subtestId) != null);
...content elided...
}
模拟尝试:
var interview = new Interview();
_repository.Expect(r => r.FindOne(t => t.Survey.Subtests.SingleOrDefault(x => x.Id == subtestId) != null)).Return(interview);
var viewModelRetrieved = _service.MyMethod(subtestId);
当我运行此代码并单步执行时,MyMethod 中的 var Interview 被设置为 null。 subtestId 值是正确的。
还有其他方法可以做到这一点吗?
I am using Rhino Mocks and I'm not sure how to mock a call that takes a lambda expression. Here's the situation:
Actual Method:
public void MyMethod (int subtestId) {
var interview = _repository.FindOne(t => t.Survey.Subtests.SingleOrDefault(x => x.Id == subtestId) != null);
...content elided...
}
Mock attempt:
var interview = new Interview();
_repository.Expect(r => r.FindOne(t => t.Survey.Subtests.SingleOrDefault(x => x.Id == subtestId) != null)).Return(interview);
var viewModelRetrieved = _service.MyMethod(subtestId);
When I run this and step through, var interview in MyMethod gets set to null. The subtestId value is correct.
Is there another way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能会有所帮助,尽管看起来不太漂亮: Rhino Mocks:当我的参数之一是 Expression> 时,我可以使用 Stub() 吗?
This might help, though it doesn't look pretty: Rhino Mocks: Can I use Stub() when one of my parameters is Expression>?
这可能不是确切的答案,但最终对我有用的是使用 IgnoreArguments() ,如下所示:
This is maybe not the answer exactly, but what ended up working for me was to use IgnoreArguments() like so: