コード例 #1
0
 public void testProperWords()
 {
     string str = "Mares Eat Oats";
     StringTheory theory = new StringTheory("mares eat oats");
     theory.ProperWords();
     Assert.True(str.Equals(theory.ToString()), "properWords failed?");
 }