A.CallTo方法,使用表达式作为参数
我正在尝试做这样的事情,但它不起作用,尽管它应该是
A.CallTo(() => partyRepo.Where(o => o.Person != null))
.Returns(new[] {new Party()});
使用这个确切的代码作为参数调用此方法,返回一个空的 Enumerable
I'm trying to do something like this, and it doesn't work, although it kinda should be
A.CallTo(() => partyRepo.Where(o => o.Person != null))
.Returns(new[] {new Party()});
the call to this method with this exact code as a parameter returns an empty Enumerable
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原因是您在调用规范中传递的表达式与实际发送到 partyRepo 的表达式不相等。 FakeItEasy 无法确定参数是否为,只能使用 Equals 方法。
我不太确定什么是最好的解决方法,您可以这样做:
使用此扩展,您现在可以重写原始行:
The reason is that the expression you're passing in the call specification and the one that's actually sent to the partyRepo will not be equal. There's no way for FakeItEasy to determine if the arguments are the but to use the Equals-method.
I'm not really sure what would be the best workaround, you could do something like this:
With this extension you can now rewrite your original line: