/// <inheritdoc />
 public NullRepositoryContext()
 {
     _messageRepository = new NullMessageRepository();
     _messageBrokerServiceRepository = new NullMessageBrokerServiceRepository();
     _messageStateRepository         = new NullMessageStateRepository();
     _subscriberRepository           = new NullSubscriberRepository();
 }
 public NullMessageBrokerServiceRepositoryTests()
 {
     _repositoryContext = new NullRepositoryContextFactory().Get();
     _cut = _repositoryContext.MessageBrokerServiceRepository;
 }