(String input)
| 478 | } |
| 479 | |
| 480 | public static void err(String input) throws IOException { |
| 481 | try { |
| 482 | JSONParser p = getParser(input); |
| 483 | while (p.nextEvent() != JSONParser.EOF) {} |
| 484 | } catch (Exception e) { |
| 485 | return; |
| 486 | } |
| 487 | fail("Input should failed:'" + input + "'"); |
| 488 | } |
| 489 | |
| 490 | @Test |
| 491 | public void testNull() throws IOException { |
no test coverage detected