Tôi có Giao diện từ trước ...
public interface ISomeInterface
{
void SomeMethod();
}
và tôi đã mở rộng intreface này bằng cách sử dụng mixin ...
public static class SomeInterfaceExtensions
{
public static void AnotherMethod(this ISomeInterface someInterface)
{
// Implementation here
}
}
Tôi có một lớp học gọi nó mà tôi muốn kiểm tra ...
public class Caller
{
private readonly ISomeInterface someInterface;
public Caller(ISomeInterface someInterface)
{
this.someInterface = someInterface;
}
public void Main()
{
someInterface.AnotherMethod();
}
}
và một thử nghiệm mà tôi muốn mô phỏng giao diện và xác minh cuộc gọi đến phương thức mở rộng ...
[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();
}
Chạy thử nghiệm này tuy nhiên tạo ra một ngoại lệ ...
System.ArgumentException: Invalid setup on a non-member method:
x => x.AnotherMethod()
Câu hỏi của tôi là, có một cách hay để chế nhạo cuộc gọi mixin?