// assertEquals("Evelyn Waugh", result);
}
JSONPathCompiler.JSONPathExpr parse(String path) throws ParseException {
java.io.StringReader r = new java.io.StringReader(path);
JSONPathCompiler app = new JSONPathCompiler(r);
JSONPathCompiler.JSONPathExpr x = JSONPathCompiler.JSONPathExpr.class.cast(app.json());
x.dump(" ");
return x;
}