public void simpleAPIPlusCypherQueryRestTest() throws IOException {
//Start wrapping server
ImpermanentGraphDatabase myDb = new ImpermanentGraphDatabase();
EmbeddedServerConfigurator config = new EmbeddedServerConfigurator(myDb);
config.configuration().setProperty(
Configurator.WEBSERVER_PORT_PROPERTY_KEY, 7575);
config.configuration().setProperty(
Configurator.REST_API_PATH_PROPERTY_KEY,
"http://localhost:7575/db/data/");
WrappingNeoServerBootstrapper srv = new WrappingNeoServerBootstrapper(myDb, config);