I\'m new to TDD and xUnit so I want to test my method that looks something like:
List DeleteElements(this List a, List b
In the current version of XUnit (1.5) you can just use
Assert.Equal(expected, actual);
The above method will do an element by element comparison of the two lists. I'm not sure if this works for any prior version.