在我的一个测试中,我想确保一个集合有一些项目.因此,我想将此集合与预期集合的项目进行比较,而不是关于项目的顺序.目前,我的测试代码看起来像这样:
[Fact] public void SomeTest() { // Do something in Arrange and Act phase to obtain a collection List<int> actual = ... // Now the important stuff in the Assert phase var expected = new List<int> { 42,87,30 }; Assert.Equal(expected.Count,actual.Count); foreach (var item in actual) Assert.True(expected.Contains(item)); }
有没有更简单的方法来实现这一点在xunit.net?我不能使用Assert.Equal,因为这个方法检查项目的顺序在两个集合中是否相同.我看过Assert.Collection,但是并没有删除上面代码中的Assert.Equal(expected.Count,actual.Count)语句.
感谢您的答案提前.
解决方法
来自xunit.net的Brad Wilson在
Github Issue号告诉我,应该使用LINQ的OrderBy运算符,然后使用Assert.Equal来验证两个集合是否包含相同的项目而不关于它们的顺序.当然,您必须在相应的项目类上有一个属性,您可以首先使用它来排序(在我的情况下我真的没有).
就个人而言,我通过使用FluentAssertions,解决了这个问题,该库提供了很多可以流利的风格应用的断言方法.当然,there are also a lot of methods that you can use to validate collections.
在我的问题的上下文中,我将使用如下代码:
[Fact] public void Foo() { var first = new[] { 1,2,3 }; var second = new[] { 3,1 }; first.Should().BeEquivalentTo(second); }
此测试通过,因为BeEquivalentTo调用忽略项的顺序.
Shouldly也是一个很好的选择,如果你不想与FluentAssertions一起去.