Rhino Mocks - 使用 Arg.Matches
我有一个正在嘲笑的函数,它接受一个参数对象作为参数。我想根据对象中的值返回结果。我无法比较对象,因为 Equals 未被覆盖。
我有以下代码:
_tourDal.Stub(x => x.GetById(Arg<TourGet>.Matches(y => y.TourId == 2), null)).Return(
new Tour()
{
TourId = 2,
DepartureLocation = new IataInfo() { IataId = 2 },
ArrivalLocation = new IataInfo() { IataId = 3 }
});
当提供的参数的 TourId 为 2 时,这应该返回指定的对象。
这看起来应该可以工作,但是当我运行它时,出现以下异常:
使用 Arg 时,所有参数都必须使用 Arg.Is 定义, Arg.Text、Arg.List、Arg.Ref 或 Arg.Out。 2 个参数 预计已定义 1 个。
我需要做什么来解决这个问题有什么想法吗?
I have a function I am mocking which takes an argument object as a parameter. I want to return a result based on the values in the object. I cannot compare the objects as Equals is not overriden.
I have the following code:
_tourDal.Stub(x => x.GetById(Arg<TourGet>.Matches(y => y.TourId == 2), null)).Return(
new Tour()
{
TourId = 2,
DepartureLocation = new IataInfo() { IataId = 2 },
ArrivalLocation = new IataInfo() { IataId = 3 }
});
This should return the object specified when the supplied parameter has a TourId of 2.
This looks like it should work, but when I run it, I get the following exception:
When using Arg, all arguments must be defined using Arg.Is,
Arg.Text, Arg.List, Arg.Ref or Arg.Out. 2 arguments
expected, 1 have been defined.
Any ideas what I need to do to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要对第二个空参数使用相同的语法,大致如下(我还没有测试过):
You need to use the same syntax for your second null argument, something along these lines (I haven't tested it):
已解决:
Solved: