使用 MSpec 比较两个列表
我应该使用哪种方法来断言两个列表包含具有 MSpec 的相同对象?
Which method should I use to assert that two lists contains the same objects with MSpec?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
ShouldContainOnly(IEnumerable)
扩展方法。因此,如果您有 2 个列表,
listA
和listB
使用:You could use the
ShouldContainOnly(IEnumerable<T>)
extension method.So if you have 2 lists,
listA
andlistB
use:如果列表中项目的顺序不重要,则可以使用
如果项目的顺序很重要,则可以使用
If the order of the items in the list doesn't matter, you would use
If the order of the items matters, you can use