Пример #1
0
            public void Should_register_default_services_implementations()
            {
                // Arrange
                var services = new ServiceCollection();

                services
                // Act
                .AddForEvolveAspNetCore(default(IConfiguration))

                // Assert
                .AssertScopedServicesExist(ExpectedScopedServices)
                .AssertSingletonServicesExist(ExpectedSingletonServices)
                ;
            }