Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 1000 个元素的整数数组。我必须使用断言方法检查此数组是否包含特定元素?
您必须搜索/遍历数组并设置一个布尔值,然后您可以使用 assertTrue() 进行测试。
或者,如果它是 ArrayList(),而不是原始数组,您可以使用:
assertTrue(arrayList.contains(XYZ));