Ejemplo n.º 1
0
 public void RemoveChars(string input, string expectedOutput)
 {
     var helper = new FormatTextHelper();
     string output = helper.RemoveChars(input, " .");
     Assert.AreEqual(expectedOutput, output);
 }