()
| 561 | } |
| 562 | |
| 563 | @Test |
| 564 | public void testBadPuts() |
| 565 | { |
| 566 | IonStruct value = system().newNullStruct(); |
| 567 | IonBool nullBool = system().newNullBool(); |
| 568 | |
| 569 | try { |
| 570 | value.put(null, nullBool); |
| 571 | fail("Expected NullPointerException"); |
| 572 | } |
| 573 | catch (NullPointerException e) { } |
| 574 | } |
| 575 | |
| 576 | @Test |
| 577 | public void testBadAdds() |
nothing calls this directly
no test coverage detected