尝试使用 Moq 模拟泛型方法时出现编译错误
我有一个想要模拟的方法:
public interface IServiceBus
{
void Subscribe<T>(ISubscribeTo<T> subscriber) where T : class;
}
在本示例中,T
可以是名为 SomeType
的内容。 现在,我想模拟这个,如下所示:
var mockServiceBus = new Mock<IServiceBus>();
mockServiceBus.Setup(x => x.Subscribe(It.IsAny<ISubscribeTo<SomeType>>));
但是,当我尝试此操作时,我收到此编译错误:
错误 65
方法“ServiceBus.IServiceBus.Subscribe(Messaging.ISubscribeTo)”的类型参数 无法从用法推断。
尝试指定类型参数 明确地。
我不知道如何解决这个错误。有什么想法吗?或者这种行为无法用 Moq 来模拟?
I have a method I'd like to mock:
public interface IServiceBus
{
void Subscribe<T>(ISubscribeTo<T> subscriber) where T : class;
}
For the sake of this example, T
can be something called SomeType
.
Now, I'd like to mock this, like so:
var mockServiceBus = new Mock<IServiceBus>();
mockServiceBus.Setup(x => x.Subscribe(It.IsAny<ISubscribeTo<SomeType>>));
However, when I try this, I get this compile error:
Error 65
The type arguments for method 'ServiceBus.IServiceBus.Subscribe(Messaging.ISubscribeTo)'
cannot be inferred from the usage.
Try specifying the type arguments
explicitly.
I'm not sure how to work around this error. Any ideas? Or is this behavior not possible to mock with Moq?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个(添加括号,因为
It.IsAny
是一种方法):try this (adding parentheses since
It.IsAny<TValue>
is a method):