ModelBuilder.UnitTests.EnumerableTypeCreatorTests.CanPopulateReturnsWhetherTypeIsSupportedTest C# (CSharp) Метод

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

private CanPopulateReturnsWhetherTypeIsSupportedTest ( Type type, bool supported ) : void
type System.Type
supported bool
Результат void
        public void CanPopulateReturnsWhetherTypeIsSupportedTest(Type type, bool supported)
        {
            var target = new EnumerableTypeCreator();

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

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