AsyncRepositoryTests.Construction.FactoryCanNotBeNull C# (CSharp) Méthode

FactoryCanNotBeNull() private méthode

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