예제 #1
0
 public void TestCountCaptialsStarWars()
 {
     Assert.AreEqual(2, UpperCase.CountCaps("Star Wars"));
     Assert.AreEqual(12, UpperCase.CountCaps("NowIsTheTimeForAllGoodMenToComeAndEat"));
     Assert.AreEqual(4, UpperCase.CountCaps("ThisIsPascalCase"));
     Assert.AreEqual(7, UpperCase.CountCaps("It's ALWAYS a good time for tacos!"));
 }
예제 #2
0
 public void TestCountCaptials()
 {
     Assert.AreEqual(2, UpperCase.CountCaps("Star Wars"));
 }