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

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

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

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

listA.ShouldContainOnly(listB)
link|improve this answer
...but check that your objects implement Equals appropriately. Machine.Specifications looks for IComparable<T>, IComparable, IEquatable<T>, and then uses Comparer<T>.Default. – Roger Lipscombe Nov 28 '11 at 15:28
feedback

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);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.