如果我这样做:
var repository = new Mock<IRepository<Banner>>(); repository.Setup(x => x.Where(banner => banner.Is.AvailableForFrontend())).Returns(list);
“Where”是我的存储库中采用Func< T,ISpecification< T>的方法. AvailableForFrontend返回ISpecification的实现,list是存储库的泛型类型的IEnumberable.
它编译得很好,但是当我运行测试时出现以下错误.
---- System.NotSupportedException : Expression banner => Convert((banner.Is.AvailableForFrontend() & banner.Is.SmallMediaBanner())) is not supported.
如果我在直接接受ISpecification的存储库中使用Where的其他重载,则没有问题.
解决方法
你尝试过以下语法:
repository.Setup(x => x.Where(It.IsAny<Func<T,ISpecification<T>>()).Returns(list);