()
| 129 | * add(null) throws NPE |
| 130 | */ |
| 131 | public void testAddNull() { |
| 132 | try { |
| 133 | NavigableSet q = set0(); |
| 134 | q.add(null); |
| 135 | shouldThrow(); |
| 136 | } catch (NullPointerException success) {} |
| 137 | } |
| 138 | |
| 139 | /* |
| 140 | * Add of comparable element succeeds |
nothing calls this directly
no test coverage detected