Mam już istniejący interfejs ...
public interface ISomeInterface
{
void SomeMethod();
}
i rozszerzyłem tę intreface za pomocą miksera ...
public static class SomeInterfaceExtensions
{
public static void AnotherMethod(this ISomeInterface someInterface)
{
// Implementation here
}
}
Mam klasę, która to nazywa, którą chcę przetestować ...
public class Caller
{
private readonly ISomeInterface someInterface;
public Caller(ISomeInterface someInterface)
{
this.someInterface = someInterface;
}
public void Main()
{
someInterface.AnotherMethod();
}
}
i test, w którym chciałbym kpić z interfejsu i zweryfikować wywołanie metody rozszerzenia ...
[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();
}
Uruchomienie tego testu generuje jednak wyjątek ...
System.ArgumentException: Invalid setup on a non-member method:
x => x.AnotherMethod()
Moje pytanie brzmi: czy istnieje dobry sposób na wyśmiewanie połączenia miksera?