Beispiel #1
0
        public void TestMethod1()
        {
            string o = "SERR PBQR PNZC";
            string r = "FREE CODE CAMP";
            var    a = CaesarsCipher.Decode(o, 13);

            Assert.IsTrue(a == r, "{0} should equal {1}, got {2} instead", o, r, a);
        }
Beispiel #2
0
        public void TestMethod3()
        {
            string o = "S";
            string r = "F";
            var    a = CaesarsCipher.Decode(o, 13);

            Assert.IsTrue(a == r, "{0} should equal {1}, got {2} instead", o, r, a);
        }