Ensure that triple-quote concatenation works inside lists.
()
| 192 | |
| 193 | /** Ensure that triple-quote concatenation works inside lists. */ |
| 194 | @Test |
| 195 | public void testConcatenation() |
| 196 | { |
| 197 | IonList value = (IonList) oneValue("[a, '''a''' '''b''', '''c''']"); |
| 198 | checkSymbol("a", value.get(0)); |
| 199 | checkString("ab", value.get(1)); |
| 200 | checkString("c", value.get(2)); |
| 201 | assertEquals(3, value.size()); |
| 202 | } |
| 203 | |
| 204 | @Test |
| 205 | public void testListIteratorRemove() |
nothing calls this directly
no test coverage detected