对于前。我需要断言该列表:
list.Should().Contain(element => element.StartsWith("J"), 2);
应包含与特定谓词匹配的特定数量(当前为2个)元素:
3
但是这种方法没有这种过载。 我怎样才能在FluentAssertions中做到这一点?
答案 0 :(得分:1)
你不能。最接近的是将该行重写为
list.Where(element => element.StartsWith("J")).Should().HaveCount(2);