use of org.neo4j.server.http.cypher.format.output.json.StreamingJsonFormat in project neo4j by neo4j.
the class StreamingJsonFormatTest method createOutputFormat.
@BeforeEach
void createOutputFormat() throws Exception {
stream = new ByteArrayOutputStream();
json = new OutputFormat(new StreamingJsonFormat().writeTo(stream).usePrettyPrinter(), new URI("http://localhost/"));
}
Aggregations