ModelBuilder.UnitTests.EnumerableTypeCreatorTests.CanPopulateReturnsWhetherTypeIsSupportedTest C# (CSharp) Method

CanPopulateReturnsWhetherTypeIsSupportedTest() private method

private CanPopulateReturnsWhetherTypeIsSupportedTest ( Type type, bool supported ) : void
type System.Type
supported bool
return void
        public void CanPopulateReturnsWhetherTypeIsSupportedTest(Type type, bool supported)
        {
            var target = new EnumerableTypeCreator();

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

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