예제 #1
0
        public void TestEncryptBy2()
        {
            string test   = "abc";
            string result = EncryptLine.Encrypt(test, 3);

            Assert.AreEqual("def", result);
        }
예제 #2
0
        public void TestEncryptSpace()
        {
            string test   = " ";
            string result = EncryptLine.Encrypt(test, 3);

            Assert.AreEqual("#", result);
        }