コード例 #1
0
 public void testTrimRight()
 {
     string str = "abcdef";
     StringTheory theory = new StringTheory("abcdef  \t  ");
     theory.TrimRight();
     Assert.True(str.Equals(theory.ToString()), "trimmed str doesn't match the comparison string!");
 }