()
| 270 | * pollLast succeeds unless empty |
| 271 | */ |
| 272 | public void testPollLast() { |
| 273 | NavigableSet q = populatedSet(SIZE); |
| 274 | for (int i = SIZE-1; i >= 0; --i) { |
| 275 | assertEquals(i, q.pollLast()); |
| 276 | } |
| 277 | assertNull(q.pollFirst()); |
| 278 | } |
| 279 | |
| 280 | /* |
| 281 | * remove(x) removes x and returns true if present |
nothing calls this directly
no test coverage detected