ModelBuilder.UnitTests.UriValueGeneratorTests.IsSupportedReturnsWhetherScenarioIsValidTest C# (CSharp) Method

IsSupportedReturnsWhetherScenarioIsValidTest() private method

private IsSupportedReturnsWhetherScenarioIsValidTest ( Type type, string referenceName, bool supported ) : void
type System.Type
referenceName string
supported bool
return void
        public void IsSupportedReturnsWhetherScenarioIsValidTest(Type type, string referenceName, bool supported)
        {
            var target = new UriValueGenerator();

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

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