public void TestDeleteLastWordEx() { StringFunction.DeleteLastWord(null); }
public void TestDeleteLastWord(string init, string expected) { Assert.AreEqual(expected, StringFunction.DeleteLastWord(init)); }