Ho un'interfaccia preesistente ...
public interface ISomeInterface
{
void SomeMethod();
}
e ho esteso questa intreface usando un mixin ...
public static class SomeInterfaceExtensions
{
public static void AnotherMethod(this ISomeInterface someInterface)
{
// Implementation here
}
}
Ho una lezione che si chiama così e che voglio testare ...
public class Caller
{
private readonly ISomeInterface someInterface;
public Caller(ISomeInterface someInterface)
{
this.someInterface = someInterface;
}
public void Main()
{
someInterface.AnotherMethod();
}
}
e un test in cui mi piacerebbe deridere l'interfaccia e verificare la chiamata al metodo di estensione ...
[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'esecuzione di questo test genera tuttavia un'eccezione ...
System.ArgumentException: Invalid setup on a non-member method:
x => x.AnotherMethod()
La mia domanda è: c'è un modo carino per deridere la chiamata del mixin?