factory.create().shutdown();
}
@Test(expected = HibernateException.class)
public void testLoadMalformedPropertiesLocation() throws Exception {
EmbeddedGraphDatabaseFactory factory = new EmbeddedGraphDatabaseFactory();
Properties properties = new Properties();
properties.put( Neo4jProperties.DATABASE_PATH, dbLocation );
properties.put( Neo4jProperties.CONFIGURATION_RESOURCE_NAME, "aKDJSAGFKJAFLASFlaLfsfaf" );
factory.initialize( properties );
factory.create().shutdown();
}