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