use of org.neo4j.kernel.api.impl.schema.LuceneSchemaIndexProviderFactory in project neo4j by neo4j.
the class IndexingServiceIntegrationTest method setUp.
@Before
public void setUp() {
EphemeralFileSystemAbstraction fileSystem = fileSystemRule.get();
database = new TestGraphDatabaseFactory().setFileSystem(fileSystem).addKernelExtension(new LuceneSchemaIndexProviderFactory()).newImpermanentDatabase();
createData(database, 100);
}
Aggregations