Question

Which method should I use to assert that two lists contains the same objects with MSpec?

Was it helpful?

Solution

You could use the ShouldContainOnly(IEnumerable<T>) extension method.

So if you have 2 lists, listA and listB use:

listA.ShouldContainOnly(listB)

OTHER TIPS

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);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top