Ejemplo n.º 1
0
 public void TestCaesarEncryptNumber()
 {
     string text = "ABBA";
     int cypher = 3;
     string ris = "DEED";
     Caesar crypt = new Caesar();
     string encoder = crypt.Encode(text, cypher);
     Assert.AreEqual(encoder, ris);
 }
Ejemplo n.º 2
0
 public void TestCaesar()
 {
     string testo = "ABBA";
     string codice = "D";
     string ris = "EFFE";
     Caesar crypt = new Caesar();
     string codifica = crypt.Encode(testo, codice);
     Assert.AreEqual(codifica,ris);
 }
Ejemplo n.º 3
0
 public void TestCaesarEncodeOk()
 {
     string text = "ABBA";
     string cypher = "D";
     string ris = "DEED";
     Caesar crypt = new Caesar();
     string codifica = crypt.Encode(text, cypher);
     Assert.AreEqual(codifica, ris);
 }
Ejemplo n.º 4
0
 public void TestCaesarEncodeABBA()
 {
     string testo = "ABBA";
     string codice = "D";
     string expected = "DEED";
     Caesar crypt = new Caesar();
     string codifica = crypt.Encode(testo, codice);
     Assert.AreEqual(expected, codifica);
 }
Ejemplo n.º 5
0
 public void TestCaesarEncodeBCCB()
 {
     string testo = "BCCB";
     string codice = "D";
     string expected = "EFFE";
     Caesar crypt = new Caesar();
     string codifica = crypt.Encode(testo, codice);
     Assert.AreEqual(expected, codifica);
 }