Esempio n. 1
0
 public void Rot13_AllLettersMapBackLower()
 {
     foreach (var cur in KeyInputUtilTest.CharsLettersLower)
     {
         var rot = CharUtil.ChangeRot13(cur);
         var end = CharUtil.ChangeRot13(rot);
         Assert.AreEqual(cur, end);
     }
 }