Exemplo n.º 1
0
 public void string_with_synbol()
 {
     Assert.AreEqual("!@# $%", ReverseWords.ReverseString("#@! %$"));
 }
Exemplo n.º 2
0
 public void string_with_sentence()
 {
     Assert.AreEqual("sihT si na !elpmaxe", ReverseWords.ReverseString("This is an example!"));
 }
Exemplo n.º 3
0
 public void string_with_digits()
 {
     Assert.AreEqual("54321", ReverseWords.ReverseString("12345"));
 }