()
| 859 | } |
| 860 | |
| 861 | @Test |
| 862 | public void testAPI() throws IOException { |
| 863 | JSONParser p = new JSONParser("[1,2]"); |
| 864 | assertEquals(JSONParser.ARRAY_START, p.nextEvent()); |
| 865 | // no nextEvent for the next objects... |
| 866 | assertEquals(1, p.getLong()); |
| 867 | assertEquals(2, p.getLong()); |
| 868 | } |
| 869 | |
| 870 | @Test |
| 871 | public void testComments() throws IOException { |
nothing calls this directly
no test coverage detected