ModelBuilder.UnitTests.BuildStrategyCompilerTests.CreatesDefaultsForPropertiesTest C# (CSharp) Method

CreatesDefaultsForPropertiesTest() private method

private CreatesDefaultsForPropertiesTest ( ) : void
return 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();
        }
    }