TDD ve xUnit konusunda yeniyim, bu nedenle aşağıdaki gibi görünen yöntemimi test etmek istiyorum:
List<T> DeleteElements<T>(this List<T> a, List<T> b);
Kullanabileceğim herhangi bir Assert yöntemi var mı? Bence böyle bir şey güzel olur
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);
Bunun gibi bir şey var mı?