我有一个 .net 4.0 测试项目,它为Should()扩展方法抛出一个方法未找到异常。
然后我注意到它也为 int 类型抛出异常。
有人知道为什么 FluentAssertions V3 会这样吗?
现在我要回到我的 2.2 版本。
作为参考,这是 FluentAssersions 项目网站https://github.com/dennisdoomen/fluentassertions/releases
这是代码示例:
var actualItems = new List<string> { "" };
actualItems.All(i => i == "X").Should().BeTrue("All items should be X") ;
这是一个例外:
Error 237 'bool' does not contain a definition for 'Should'
and no extension method 'Should' accepting a first argument of type 'bool'
could be found (are you missing a using directive or an assembly reference?)
C:\pathtoproject\Tests.cs