コード例 #1
0
        public void Problem014_The_Karacas_Encryption_Algorithm_Test_4()
        {
            string encryptText = Problem014.TheKaracasEncryptionAlgorithm("burak");
            string expected    = "k0r3baca";

            Assert.Equal(encryptText, expected);
        }
コード例 #2
0
        public void Problem014_The_Karacas_Encryption_Algorithm_Test_1()
        {
            string encryptText = Problem014.TheKaracasEncryptionAlgorithm("apple");
            string expected    = "1lpp0aca";

            Assert.Equal(encryptText, expected);
        }
コード例 #3
0
        public void Problem014_The_Karacas_Encryption_Algorithm_Test_3()
        {
            string encryptText = Problem014.TheKaracasEncryptionAlgorithm("karaca");
            string expected    = "0c0r0kaca";

            Assert.Equal(encryptText, expected);
        }