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