use of org.neo4j.kernel.impl.core.RelationshipEntity in project neo4j by neo4j.
the class TxStateTransactionDataViewTest method snapshot.
private TxStateTransactionDataSnapshot snapshot() {
when(internalTransaction.newNodeEntity(anyLong())).thenAnswer(invocation -> new NodeEntity(internalTransaction, invocation.getArgument(0)));
when(internalTransaction.newRelationshipEntity(anyLong())).thenAnswer(invocation -> new RelationshipEntity(internalTransaction, invocation.getArgument(0)));
when(internalTransaction.newRelationshipEntity(anyLong(), anyLong(), anyInt(), anyLong())).thenAnswer(invocation -> new RelationshipEntity(internalTransaction, invocation.getArgument(0), invocation.getArgument(1), invocation.getArgument(2), invocation.getArgument(3)));
return new TxStateTransactionDataSnapshot(state, ops, transaction);
}
Aggregations