我的接口定义如下:
public interface IBaseRepository<T>
{
IQueryable<T> All();
}
然后,我有一个扩展它的接口:
public interface IAccountRepository : IBaseRepository<AccountModel>
{
}
然而,在我的测试中,当我尝试模仿IAccountRepository
并调用IAccountRepository.All()
的设置时,Moq不允许我使用Returns
方法来定义结果
var mockAccountRepository = new Mock<IAccountRepository>();
mockAccountRepository.Setup(x => x.All()).Returns(...); // "Returns" can't work here for some reason.
如何在继承通用接口的接口上模拟基本方法?
答案 0 :(得分:4)
mockAccountRepository.Setup(x => x.All()).Returns(new List<AccountModel>().AsQueryable());