ModelBuilder.UnitTests.GenderValueGeneratorTests.GenerateReturnsValuesForSeveralNameFormatsTest C# (CSharp) Method

GenerateReturnsValuesForSeveralNameFormatsTest() private method

private GenerateReturnsValuesForSeveralNameFormatsTest ( Type type, string referenceName, bool expected ) : void
type System.Type
referenceName string
expected bool
return void
        public void GenerateReturnsValuesForSeveralNameFormatsTest(Type type, string referenceName, bool expected)
        {
            var target = new GenderValueGenerator();

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

            actual.Should().NotBeNullOrEmpty();
        }