use of org.ff4j.neo4j.store.FeatureStoreNeo4J in project ff4j by ff4j.
the class FeatureStoreNeo4jSchemaTest method testCreateSchema.
@Test
public void testCreateSchema() {
// Given
FeatureStore fStore = new FeatureStoreNeo4J(graphDb);
// WHEN
fStore.createSchema();
fStore.createSchema();
// No error here even if calling the method twice
Assert.assertNotNull(fStore);
}
Aggregations