作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这段代码工作正常
[Test]
public void boo()
{
var collection = new[] { 1, 2, 3 };
collection.Should().Equal(1, 2, 3);
}
但是,这失败了
[Test]
public void foo()
{
var collection = new[] { "1", "2", "3" };
collection.Should().Equal("1", "2", "3");
}
失败信息是:
'Expected collection to be equal to {1} because 2, but {"1", "2", "3"} contains 2 item(s) too many.'
这里有什么问题?为什么无法比较字符串的可枚举?
当然,我的问题是 - 如何处理 foo() 中的大小写?
最佳答案
问题是第二次调用被解析为以下重载:
public AndConstraint<TAssertions> Equal(IEnumerable expected,
string reason,
params object[] reasonArgs);
代替:
public AndConstraint<TAssertions> Equal(params object[] elements);
要获得所需的结果,您可以强制编译器使用正确的重载方法,例如:
collection.Should().Equal((object)"1", "2", "3");
关于c# - FluentAssertion 无法比较可枚举的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9118143/
我是一名优秀的程序员,十分优秀!