use of org.neo4j.kernel.impl.store.format.standard.PropertyRecordFormat in project neo4j by neo4j.
the class IdGeneratorTest method makeSureMagicMinusOneIsNotReturnedFromNodeIdGenerator.
@Test
public void makeSureMagicMinusOneIsNotReturnedFromNodeIdGenerator() throws Exception {
makeSureMagicMinusOneIsSkipped(new NodeRecordFormat());
makeSureMagicMinusOneIsSkipped(new RelationshipRecordFormat());
makeSureMagicMinusOneIsSkipped(new PropertyRecordFormat());
}
Aggregations