batch = graph.batch();
totalNumberCreated += createChildren(batch, initialPath, "secondBranch", 2, numberOfPropertiesPerNode, 2, null);
Stopwatch sw = new Stopwatch();
sw.start();
batch.execute();
sw.stop();
System.out.println(" final " + getTotalAndAverageDuration(sw, totalNumberCreated));
assertThat(totalNumberCreated, is(totalNumber + calculateTotalNumberOfNodesInTree(2, 2, false)));
}
return (int)totalNumberCreated;