尝试使用 Moq 模拟泛型方法时出现编译错误

发布于 2024-09-25 07:04:53 字数 627 浏览 1 评论 0原文

我有一个想要模拟的方法:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别忘他 2024-10-02 07:04:53

试试这个(添加括号,因为 It.IsAny 是一种方法):

mockServiceBus.Setup(x => x.Subscribe(It.IsAny<ISubscribeTo<SomeType>>()));

try this (adding parentheses since It.IsAny<TValue> is a method):

mockServiceBus.Setup(x => x.Subscribe(It.IsAny<ISubscribeTo<SomeType>>()));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文