public void EncryptionTest_2() { Assert.AreEqual("JCRRA", CaesarCipher.Shift("Happy", 2)); Assert.AreEqual("HAPPY", CaesarCipher.Shift("JCRRA", -2)); }