ModelBuilder.UnitTests.ValueGeneratorMatcherTests.IsSupportedEvaluatesSpecifiedTypesTest C# (CSharp) Метод

IsSupportedEvaluatesSpecifiedTypesTest() приватный Метод

private IsSupportedEvaluatesSpecifiedTypesTest ( Type type, bool expected ) : void
type System.Type
expected bool
Результат void
        public void IsSupportedEvaluatesSpecifiedTypesTest(Type type, bool expected)
        {
            var target = new WrapperGenerator(typeof(bool), typeof(bool?));

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

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