ModelBuilder.UnitTests.CountValueGeneratorTests.IsSupportedReturnsTrueWhenReferenceNameIsCountTest C# (CSharp) 메소드

IsSupportedReturnsTrueWhenReferenceNameIsCountTest() 개인적인 메소드

private IsSupportedReturnsTrueWhenReferenceNameIsCountTest ( Type type, bool isSupported, double min, double max ) : void
type System.Type
isSupported bool
min double
max double
리턴 void
        public void IsSupportedReturnsTrueWhenReferenceNameIsCountTest(
            Type type,
            bool isSupported,
            double min,
            double max)
        {
            if (isSupported == false)
            {
                // Ignore this test
                return;
            }

            var target = new CountValueGenerator();

            var actual = target.IsSupported(type, "Count", null);

            actual.Should().BeTrue();
        }