示例#1
0
        public void TestMethod1()
        {
            //arrange
            char expected = 'b';
            char msg = 'a';
            EncryptionHelper th = new EncryptionHelper();

            //act
            char actual = th.encryptAlphabet(msg);

            //assert
            Assert.AreEqual(expected, actual);
        }