我在使用Moq的测试中有一些代码:
public class Invoice
{
...
public bool IsInFinancialYear(FinancialYearLookup financialYearLookup)
{
return InvoiceDate >= financialYearLookup.StartDate && InvoiceDate <= financialYearLookup.EndDate;
}
...
}
所以在单元测试中,我试图模拟该方法并使它返回true
mockInvoice.Setup(x => x.IsInFinancialYear()).Returns(true);
无论如何要写这行,所以我不必指定输入IsInFinancialYear
。即。因此,无论代码中输入了什么参数,它都不会返回true,无论传递给它的是什么?