@Test
public void testFile5() throws Exception {
File file = new File(System.getProperty("user.dir") + "/resources/testfiles/test5.json");
JsonTextValidator jtop = new JsonTextValidator(file) {
@Override
public void reportProblem(String msg, Location loc, int violation, boolean isError) {
Assert.assertEquals(loc.charStart, 16);
}
};
jtop.parse();
}