Esempio n. 1
0
        public void DecryptionTests()
        {
            int    shift    = 1;
            string text     = "бвг";
            string expected = "абв";

            Decryption decryption = new Decryption();
            string     word       = decryption.DecryptWithIset(text, shift);

            word.Equals(expected);
        }