()
| 281 | * containsAll(c) is true when c contains a subset of elements |
| 282 | */ |
| 283 | public void testContainsAll() { |
| 284 | NavigableSet q = populatedSet(SIZE); |
| 285 | NavigableSet p = set0(); |
| 286 | for (int i = 0; i < SIZE; ++i) { |
| 287 | assertTrue(q.containsAll(p)); |
| 288 | assertFalse(p.containsAll(q)); |
| 289 | p.add(new Integer(i)); |
| 290 | } |
| 291 | assertTrue(p.containsAll(q)); |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * retainAll(c) retains only those elements of c and reports true if changed |
nothing calls this directly
no test coverage detected