ModelBuilder.UnitTests.ValueGeneratorMatcherTests.IsSupportedEvaluatesSpecifiedTypesTest C# (CSharp) Method

IsSupportedEvaluatesSpecifiedTypesTest() private method

private IsSupportedEvaluatesSpecifiedTypesTest ( Type type, bool expected ) : void
type System.Type
expected bool
return 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);
        }