[InlineData(false, "Herbert George W.")]   // 12 Description = "Last name cannot be an initial."
        public void ValidName_SuppliedWithAName_ReturnsWhetherNameIsValid(bool expected, string name)
        {
            // Arrange
            // Act
            bool actual = NameValidator.ValidName(name);

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