public void TestCaesarDecryptNumber() { string text = "EDDS"; int cypher = 4; string ris = "AZZO"; Caesar crypt = new Caesar(); string decoder = crypt.Decode(text, cypher); Assert.AreEqual(decoder, ris); }
public void TestCaesarDecodeDEED() { string testo = "DEED"; string codice = "D"; string expected = "ABBA"; Caesar crypt = new Caesar(); string codifica = crypt.Decode(testo, codice); Assert.AreEqual(expected, codifica); }
public void TestCaesarDecodeEDDS() { string testo = "EDDS"; string codice = "E"; string expected = "AZZO"; Caesar crypt = new Caesar(); string codifica = crypt.Decode(testo, codice); Assert.AreEqual(expected, codifica); }
public void TestCaesarDecodeError() { string text = "ABBA"; string cypher = "D"; string ris = "DEED"; Caesar crypt = new Caesar(); string decode = crypt.Decode(text, cypher); Assert.AreEqual(decode, ris); }