I want to assert that the elements of two list contains values that I expected, something like:
var foundCollection = fooManager.LoadFoo(); var expectedCollectio
Have you tried something like this?
Assert.That(expectedCollection, Is.EquivalentTo(foundCollection))