AsyncRepositoryTests.Construction.EventReaderConfigurationCanNotBeNull C# (CSharp) Method

EventReaderConfigurationCanNotBeNull() private method

private EventReaderConfigurationCanNotBeNull ( ) : void
return void
            public void EventReaderConfigurationCanNotBeNull()
            {
                Assert.Throws<ArgumentNullException>(() =>
                                                     new AsyncRepository<AggregateRootEntityStub>(
                                                         AggregateRootEntityStub.Factory, new ConcurrentUnitOfWork(),
                                                         EmbeddedEventStore.Connection, null));
            }