()
| 471 | * toString contains toStrings of elements |
| 472 | */ |
| 473 | public void testToString() { |
| 474 | NavigableSet q = populatedSet(SIZE); |
| 475 | String s = q.toString(); |
| 476 | for (int i = 0; i < SIZE; ++i) { |
| 477 | assertTrue(s.contains(String.valueOf(i))); |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | // /* |
| 482 | // * A deserialized serialized set has same elements |
nothing calls this directly
no test coverage detected