我有一个预先存在的接口…
public interface ISomeInterface
{
void SomeMethod();
}
我已经使用mixin扩展了这个接口…
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();
}
}
以及一个测试,我想模拟接口并验证对扩展方法的调用…
[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调用?