gpt4 book ai didi

moq - 使用 Moq 中的 Delegate 参数验证方法

转载 作者:行者123 更新时间:2023-12-01 00:02:55 25 4
gpt4 key购买 nike

在我的单元测试中使用 Moq 生成 stub 和模拟,我有一个案例,我想验证是否调用了采用 Delegate 参数的方法。我不关心提供的特定 Delegate 参数,我只想确保该方法实际上被调用。该方法如下所示:

public interface IInvokerProxy{
void Invoke(Delegate method);
...
}

在我的测试中,我想做这样的事情:
invokerProxyMock.Verify( proxy => proxy.Invoke( It.IsAny<Delegate>));

目前它给了我一个错误参数“1”:无法从“方法组”转换为“System.Delegate”。有谁知道这是否可能?

最佳答案

我相信您遗漏了 It.IsAny<Delegate>() 上的括号.

关于moq - 使用 Moq 中的 Delegate 参数验证方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2621709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com