System.Data.Entity.DbConfigurationTests.SetProviderFactoryResolver.Throws_if_given_a_null_service C# (CSharp) Method

Throws_if_given_a_null_service() private method

private Throws_if_given_a_null_service ( ) : void
return void
            public void Throws_if_given_a_null_service()
            {
                Assert.Equal(
                    "providerFactoryResolver",
                    Assert.Throws<ArgumentNullException>(() => new DbConfiguration().SetProviderFactoryResolver(null)).ParamName);
            }