ModelBuilder.UnitTests.PhoneValueGeneratorTests.IsSupportedTest C# (CSharp) 메소드

IsSupportedTest() 개인적인 메소드

private IsSupportedTest ( Type type, string referenceName, bool expected ) : void
type System.Type
referenceName string
expected bool
리턴 void
        public void IsSupportedTest(Type type, string referenceName, bool expected)
        {
            var target = new PhoneValueGenerator();

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

            actual.Should().Be(expected);
        }