public void GetLowerCamelWordTest1() { var text = "Hello World !"; var expected = "helloWorld!"; var actual = CamelWords.GetLowerCamelWord(text); Assert.AreEqual(expected, actual); } // end function