コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: avinashbhujan/Encrypter
        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);
        }