}
private void createTestDatabaseForInternalTest() {
database = new TestGraphDatabaseFactory().newImpermanentDatabase();
new TestDataBuilder(database)
.node() //ID=0
.node().setProp(INTERNAL_NODE_PROPERTY, "whatever").setProp(INTERNAL_PREFIX + "name", "One").setProp(INTERNAL_PREFIX + "count", 1).setProp(INTERNAL_PREFIX + "tags", new String[]{"one", "two"})
.node().setProp(INTERNAL_NODE_PROPERTY, "whatever").setProp("name", "Two").setProp("size", 2L)
.relationshipFrom(1, INTERNAL_PREFIX + "R1").setProp("time", 1)