예제 #1
0
 public void testProper()
 {
     string str = "Thomas";
     StringTheory theory = new StringTheory("THOMAS");
     theory.Proper();
     Assert.True(str.Equals(theory.ToString()), "proper str doesn't match the comparison string!");
 }