是否可以(使用Moq)使用Lambda参数进行存根方法调用?

时间:2010-02-09 12:07:35

标签: c# .net testing mocking moq

如果我这样做:

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的其他重载,则没有问题。

所以我的新手模拟/ Moq问题是:我可以使用lamdba作为参数存根方法调用吗?或者我应该以另一种方式解决这个问题?

1 个答案:

答案 0 :(得分:10)

您是否尝试过以下语法:

repository.Setup(x => x.Where(It.IsAny<Func<T, ISpecification<T>>()).Returns(list);