기존 인터페이스가 있습니다 ...
public interface ISomeInterface
{
void SomeMethod();
}
그리고 mixin을 사용 하여이 intreface를 확장했습니다 ...
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()
내 질문은, 믹스 인 호출을 조롱하는 좋은 방법이 있습니까?