ModelBuilder.UnitTests.DefaultBuildStrategyCompilerTests.CreatesWithDefaultConfigurationTest C# (CSharp) Method

CreatesWithDefaultConfigurationTest() private method

private CreatesWithDefaultConfigurationTest ( ) : void
return void
        public void CreatesWithDefaultConfigurationTest()
        {
            var target = new DefaultBuildStrategyCompiler();

            target.IgnoreRules.Should().BeEmpty();
            target.ConstructorResolver.Should().BeOfType<DefaultConstructorResolver>();
            target.CreationRules.Should().BeEmpty();
            target.TypeCreators.Should().NotBeEmpty();
            target.ValueGenerators.Should().NotBeEmpty();
            target.ExecuteOrderRules.Should().NotBeEmpty();
            target.PostBuildActions.Should().BeEmpty();
        }