Home
last modified time | relevance | path

Searched refs:testEmptyList (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/util/Collection/
DMOAT.java157 testEmptyList(emptyArray); in realMain()
163 testEmptyList(noOne); in realMain()
177 testEmptyList(emptyList); in realMain()
178 testEmptyList(EMPTY_LIST); in realMain()
179 testEmptyList(Collections.emptyList()); in realMain()
206 testEmptyList(singletonList.subList(0,0)); in realMain()
207 testEmptyList(singletonList.subList(0,0).subList(0,0)); in realMain()
215 testEmptyList(List.of()); in realMain()
216 testEmptyList(List.of().subList(0,0)); in realMain()
452 private static void testEmptyList(List<?> c) { in testEmptyList() method in MOAT