gpt4 book ai didi

c# - 使用 Moq 模拟扩展方法

转载 作者:IT王子 更新时间:2023-10-29 03:31:32 28 4
gpt4 key购买 nike

我有一个预先存在的界面...

public interface ISomeInterface
{
void SomeMethod();
}

我已经使用 mixin 扩展了这个接口(interface)......

public static class SomeInterfaceExtensions
{
public static void AnotherMethod(this ISomeInterface someInterface)
{
// Implementation here
}
}

我有一个类调用这个我想测试...

public class Caller
{
private readonly ISomeInterface someInterface;

public Caller(ISomeInterface someInterface)
{
this.someInterface = someInterface;
}

public void Main()
{
someInterface.AnotherMethod();
}
}

还有一个我想模拟接口(interface)并验证对扩展方法的调用的测试...

    [Test]
public void Main_BasicCall_CallsAnotherMethod()
{
// Arrange
var someInterfaceMock = new Mock<ISomeInterface>();
someInterfaceMock.Setup(x => x.AnotherMethod()).Verifiable();

var caller = new Caller(someInterfaceMock.Object);

// Act
caller.Main();

// Assert
someInterfaceMock.Verify();
}

但是运行这个测试会产生一个异常...

System.ArgumentException: Invalid setup on a non-member method:
x => x.AnotherMethod()

我的问题是,是否有一种很好的方法来模拟 mixin 调用?

最佳答案

我已经使用 Wrapper 来解决这个问题。创建一个包装器对象并传递您的模拟方法。

参见 Mocking Static Methods for Unit Testing Paul Irwin,它有很好的例子。

关于c# - 使用 Moq 模拟扩展方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2295960/

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