()
| 231 | } |
| 232 | |
| 233 | @Test |
| 234 | public void parseToStreamStringUnfinished() throws Exception { |
| 235 | String json = "{\"notgonnafinish"; |
| 236 | JsonParser jp = JSON.parseToStream(json); |
| 237 | assertNotNull(jp); |
| 238 | } |
| 239 | |
| 240 | // parseToStream - Byte |
| 241 | @Test |
nothing calls this directly
no test coverage detected