断言等于 Junit 中的 2 个列表
2022-08-31 06:23:11
如何在 JUnit 测试用例中的列表之间做出相等断言?列表的内容之间应该平等。
例如:
List<String> numbers = Arrays.asList("one", "two", "three");
List<String> numbers2 = Arrays.asList("one", "two", "three");
List<String> numbers3 = Arrays.asList("one", "two", "four");
// numbers should be equal to numbers2
//numbers should not be equal to numbers3