我基本上想存根一个函数,但为引用类型参数定义我自己的相等比较器。
我想存根一个函数来返回数据。我希望方法的参数通过特定值而不是 ReferenceEquals 进行比较。我也不想为我的参数引用类型创建一个等于覆盖。我认为下面是实现此目的的方法,但我收到了一个例外。有没有另一种方法可以做到这一点和/或我在这里做错了什么?
异常消息:System.Reflection.AmbiguousMatchException:找到不明确的匹配。
public class Parameter
{
public string Property1 { get; set; }
}
public interface IStubbable
{
string DoStuff(Parameter param);
}
public class ThisService
{
private IStubbable _stubbable;
public ThisService(IStubbable stubbable)
{
_stubbable = stubbable;
}
public string DoTheStuff(Parameter param)
{
return _stubbable.DoStuff(param);
}
}
[Test]
public void TestStubbing()
{
const string expectedResult = "Totes";
var iStub = MockRepository.GenerateStub<IStubbable>();
const string prop1 = "cool stub bro";
iStub
.Stub(x => x.DoStuff(Arg<Parameter>.Matches(y => y.Property1 == prop1)))
.Return(expectedResult);
var service = new ThisService(iStub);
var result = service.DoTheStuff(new Parameter() {Property1 = prop1});
Assert.AreEqual(expectedResult, result);
}