ฉันมีส่วนต่อประสานก่อนหน้า ...
public interface ISomeInterface
{
void SomeMethod();
}
และฉันได้ขยายอินเทอร์เฟซนี้โดยใช้มิกซ์อิน ...
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()
คำถามของฉันคือมีวิธีที่ดีในการเยาะเย้ยโทร mixin?