public void testTrim()
 {
     string str = "abcdef";
     StringTheory theory = new StringTheory("    \t abcdef  \t  ");
     theory.Trim();
     Assert.True(str.Equals(theory.ToString()), "trimmed str doesn't match the comparison string!");
 }