public static void ThisToStringTest(string input, string expected)
        {
            CamelCase cc     = new CamelCase();
            string    result = cc.ThisToString(input);

            Assert.Equal(result, expected);
        }