AsyncRepositoryTests.Construction.EventStoreConnectionCanNotBeNull C# (CSharp) Method

EventStoreConnectionCanNotBeNull() private method

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