Which method should I use to assert that two lists contai开发者_如何学Pythonns the same objects with MSpec?
You could use the ShouldContainOnly(IEnumerable<T>) extension method.
So if you have 2 lists, listA and listB use:
listA.ShouldContainOnly(listB)
If the order of the items in the list doesn't matter, you would use
listA.ShouldContainOnly(listB); // both lists must have exactly the same items
listA.ShouldContain(listB); // listA must at least contain the items of listB
If the order of the items matters, you can use
listA.ShouldEqual(listB);
加载中,请稍侯......
精彩评论