()
| 170 | * addAll(null) throws NPE |
| 171 | */ |
| 172 | public void testAddAll1() { |
| 173 | try { |
| 174 | NavigableSet q = set0(); |
| 175 | q.addAll(null); |
| 176 | shouldThrow(); |
| 177 | } catch (NullPointerException success) {} |
| 178 | } |
| 179 | |
| 180 | /* |
| 181 | * addAll of a collection with null elements throws NPE |
nothing calls this directly
no test coverage detected