Hi I'm new to TDD and xUnit so I want to test my method that is something like :
List<T> DeleteElements<T>(this List<T> a, List<T> b);
of course that's not the real method :) Is there any Assert method that I can use ? I think something like this would be nice
List<int> values = new List<int>() { 1, 2, 3 };
List<int> expected = new List<int>() { 1 };
List<int> actual = values.DeleteElements(new List<int>() { 2, 3 });
Assert.Exact(expected, actual);
Is there something like this ?