最佳答案
我是 TDD 和 xUnit 的新手,所以我想测试我的方法,看起来像这样:
List<T> DeleteElements<T>(this List<T> a, List<T> b);
有没有我可以使用的 Assert 方法
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);
有这样的东西吗?