模拟具有不同签名的方法,其中一个方法具有 Object 作为参数类型
Mocking a method with different signatures where one has Object as a parameter type
我有以下接口
public interface IInfo
{
bool IsCompatibleWith (Object informationObject);
}
public interface IInfo<T> : IInfo
{
bool IsCompatibleWith (T informationObject);
}
并尝试执行以下模拟
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)
将接受注册
我有以下接口
public interface IInfo
{
bool IsCompatibleWith (Object informationObject);
}
public interface IInfo<T> : IInfo
{
bool IsCompatibleWith (T informationObject);
}
并尝试执行以下模拟
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)
将接受注册