Is there something similar to CollectionAssert.AreEquivalent() that works with nested collections?
The following code...
CollectionAssert.AreEquivalent (
You would need to write your own. However, if it were me I would try to write my Asserts in a different way so that if there was a difference in the two lists it was more obvious why/what was wrong.