ModelBuilder.UnitTests.BuildStrategyCompilerTests.CreatesDefaultsForPropertiesTest C# (CSharp) Méthode

CreatesDefaultsForPropertiesTest() private méthode

private CreatesDefaultsForPropertiesTest ( ) : void
Résultat void
        public void CreatesDefaultsForPropertiesTest()
        {
            var target = new BuildStrategyCompiler();
            
            target.ConstructorResolver.Should().BeNull();
            target.CreationRules.Should().NotBeNull();
            target.ExecuteOrderRules.Should().NotBeNull();
            target.IgnoreRules.Should().NotBeNull();
            target.TypeCreators.Should().NotBeNull();
            target.ValueGenerators.Should().NotBeNull();
            target.PostBuildActions.Should().NotBeNull();
        }
    }