public void IsVowel_Should_Return_True_When_CalledWithTheTestParams(char c)
        {
            var result = stringManipulator.IsVowel(c);

            Assert.IsTrue(result);
        }