()
| 373 | } |
| 374 | |
| 375 | @Test |
| 376 | public void testDeepPut() |
| 377 | { |
| 378 | IonStruct value = (IonStruct) oneValue("{a:{b:bv}}"); |
| 379 | IonStruct nested = (IonStruct) value.get("a"); |
| 380 | IonBool inserted = system().newNullBool(); |
| 381 | nested.put("c", inserted); |
| 382 | assertSame(inserted, ((IonStruct)value.get("a")).get("c")); |
| 383 | testMultithreadedAccess(nested); |
| 384 | testMultithreadedAccess(value); |
| 385 | } |
| 386 | |
| 387 | @Test |
| 388 | public void testPutAll() |
nothing calls this directly
no test coverage detected