Ensure that triple-quote concatenation works inside sexp.
()
| 178 | |
| 179 | /** Ensure that triple-quote concatenation works inside sexp. */ |
| 180 | @Test |
| 181 | public void testConcatenation() |
| 182 | { |
| 183 | IonSexp value = (IonSexp) oneValue("(a '''a''' '''b''' \"c\")"); |
| 184 | checkSymbol("a", value.get(0)); |
| 185 | checkString("ab", value.get(1)); |
| 186 | checkString("c", value.get(2)); |
| 187 | assertEquals(3, value.size()); |
| 188 | } |
| 189 | |
| 190 | @Test |
| 191 | public void testSexpIteratorRemove() |
nothing calls this directly
no test coverage detected