@Test
public void testBeginTxWithoutConfiguredTxManager() throws Exception {
Neo4jTemplate template = new Neo4jTemplate(graphDatabase);
Transaction tx = template.getGraphDatabase().beginTx();
Node node = template.createNode();
node.setProperty("name","foo");
tx.success();
tx.close();
tx = template.getGraphDatabase().beginTx();