Example #1
0
        private void ShouldParseGivenName()
        {
            const string expected = "some_name";

            var actual = PropertyParser.ParsePerson($"{nameof(Person.GivenName)}", expected, null);

            Assert.Equal(actual.GivenName, expected);
        }