public void testStripRange() { string str = "abcd ef"; StringTheory theory = new StringTheory("ab \tcd ef"); theory.StripRange(0, 7); Assert.True(str.Equals(theory.ToString()), "trimmed str doesn't match the comparison string!"); }