String initialPath = "";
int depth = 1;
int numChildrenPerNode = 1;
int numPropertiesPerNode = 1;
Stopwatch sw = new Stopwatch();
boolean batch = true;
createSubgraph(graph, initialPath, depth, numChildrenPerNode, numPropertiesPerNode, batch, sw, System.out, null);
assertThat(graph.getChildren().of("/"), hasChildren(segment("node1")));
Subgraph subgraph = graph.getSubgraphOfDepth(2).at("/");