AsyncRepositoryTests.Construction.FactoryCanNotBeNull C# (CSharp) Method

FactoryCanNotBeNull() private method

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