use of io.spine.server.entity.LifecycleFlags in project core-java by SpineEventEngine.
the class AggregateStorageShould method read_history_of_deleted_aggregate.
@Test
public void read_history_of_deleted_aggregate() {
final LifecycleFlags deletedRecordFlags = LifecycleFlags.newBuilder().setDeleted(true).build();
storage.writeLifecycleFlags(id, deletedRecordFlags);
writeAndReadEventTest(id, storage);
}
Aggregations