public void InputToUpperTest()
        {
            string        input      = "All will Return Upper Case";
            string        expected   = "ALL WILL RETURN UPPER CASE";
            ValidateInput validInput = new ValidateInput();
            string        actual     = validInput.InputToUpper(input);

            Assert.Equal(expected, actual);
        }