Beispiel #1
0
 public void null_projection_name_throws_argument_null_exception()
 {
     _manager = new CoreProjectionDefaultCheckpointManager(
         _projection, _bus, _projectionCorrelationId, _readDispatcher, _writeDispatcher, _config, "$projections-projection-checkpoint", null,
         new StreamPositionTagger("stream"));
 }
Beispiel #2
0
 public void null_position_tagger_throws_argument_null_exception()
 {
     _manager = new CoreProjectionDefaultCheckpointManager(
         _projection, _bus, _projectionCorrelationId, _readDispatcher, _writeDispatcher, _config, "$projections-projection-checkpoint", "projection",
         null);
 }
Beispiel #3
0
 public void it_can_be_created()
 {
     _manager = new CoreProjectionDefaultCheckpointManager(
         _projection, _bus, _projectionCorrelationId, _readDispatcher, _writeDispatcher, _config, "$projections-projection-checkpoint", "projection",
         new StreamPositionTagger("stream"));
 }
 protected virtual void When()
 {
     _manager = new CoreProjectionDefaultCheckpointManager(
         _projection, _bus, _projectionCorrelationId, _readDispatcher, _writeDispatcher, _config, _projectionCheckpointStreamId, "projection",
         new StreamPositionTagger("stream"));
 }