I want to assert that the elements of two list contains values that I expected, something like:
var foundCollection = fooManager.LoadFoo(); var expectedCollectio
This solved my problem using NUnit's Assertion class from the NUnitCore assembly:
Assertion
NUnitCore
AssertArrayEqualsByElements(list1.ToArray(), list2.ToArray());