Out of curiosity, what was the issue with temp files? It was a little
awkward the way some of the tests were building the temp file
directory, but Java actually makes this pretty easy. E.g. see
Neo4jGraphSailTest:
File dir = File.createTempFile("blueprints", "-neo4j-test");
String path = dir.getPath();
dir.delete();
dir.mkdir();
Josh