@Test
public void parsesUsingSaj() throws Exception {
final FileReader jsonReader = new FileReader(new File(this.getClass().getResource("SimpleExample.json").getFile()));
final Set<String> fieldNames = new HashSet<String>();
SAJ_PARSER.parse(jsonReader, new JsonListener() {
public void startField(String name) {
fieldNames.add(name);
}
public void startDocument() {