模拟具有不同签名的方法,其中有Object作为参数类型
本文关键字:Object 类型 参数 方法 模拟 | 更新日期: 2023-09-27 18:02:41
我有以下接口
public interface IInfo
{
bool IsCompatibleWith (Object informationObject);
}
public interface IInfo<T> : IInfo
{
bool IsCompatibleWith (T informationObject);
}
并尝试执行以下mock
Foo f = new Foo();
Mock<IInfo<Foo>> infoMock = new Mock<IInfo<Foo>>();
infoMock.Setup(i => i.IsCompatibleWith(f)).Returns(true);
然后测试运行以下行
IInfo mockedInfo;
mockedInfo.IsCompatibleWith(f);
问题是,Setup方法设置了IsCompatibleWith (T informationObject)
,而代码调用了IsCompatibleWith (Object informationObject)
。如何设置两个签名?
下面的代码片段显示了配置这两个方法的方法:
//configure the method with the `object` as a parameter
infoMock.Setup(i => i.IsCompatibleWith((object)f)).Returns(true);
//configure the method with the `IModel` as a parameter
infoMock.Setup(i => i.IsCompatibleWith(f)).Returns(true);
Moq
按原样记录参数。当您将实例强制转换为object
时,方法bool IsCompatibleWith(Object informationObject)
将接受注册