J'ai une interface préexistante ...
public interface ISomeInterface
{
void SomeMethod();
}
et j'ai étendu cette interface en utilisant un mixin ...
public static class SomeInterfaceExtensions
{
public static void AnotherMethod(this ISomeInterface someInterface)
{
// Implementation here
}
}
J'ai une classe qui appelle ça que je veux tester ...
public class Caller
{
private readonly ISomeInterface someInterface;
public Caller(ISomeInterface someInterface)
{
this.someInterface = someInterface;
}
public void Main()
{
someInterface.AnotherMethod();
}
}
et un test où j'aimerais me moquer de l'interface et vérifier l'appel à la méthode d'extension ...
[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();
}
L'exécution de ce test génère cependant une exception ...
System.ArgumentException: Invalid setup on a non-member method:
x => x.AnotherMethod()
Ma question est, y a-t-il une bonne façon de se moquer de l'appel mixin?