Exemplo n.º 1
0
  private void startDb(KernelExtensionFactory<?> indexProviderFactory) {
    if (db != null) db.shutdown();

    TestGraphDatabaseFactory factory = new TestGraphDatabaseFactory();
    factory.setFileSystem(fs.get());
    factory.setKernelExtensions(Arrays.<KernelExtensionFactory<?>>asList(indexProviderFactory));
    db = (GraphDatabaseAPI) factory.newImpermanentDatabase();
  }