public void TestEncryptBy2() { string test = "abc"; string result = EncryptLine.Encrypt(test, 3); Assert.AreEqual("def", result); }
public void TestEncryptSpace() { string test = " "; string result = EncryptLine.Encrypt(test, 3); Assert.AreEqual("#", result); }