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

IsSupportedReturnsFalseWhenReferenceNameNotCountTest() 개인적인 메소드

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

            var target = new CountValueGenerator();

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

            actual.Should().BeFalse();
        }