public void NullorEmptyInputValidation()
        {
            // arrange
            IAgeRange <PersonModel> AgeRangeTest = new AgeRange();
            string NullorEmptyTestString         = string.Empty;

            // assert
            Assert.IsFalse(AgeRangeTest.CheckInputForNullorEmpty(NullorEmptyTestString), "An input supplied has no value");
        }