public void EncryprMessageTest1()
        {
            EncryptDecryptText objencrpt     = new EncryptDecryptText();
            string             input         = "if man was meant to stay on the ground god would have given us roots";
            string             expetedOutput = "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau numsp 3 6 9 14 16 20 22 25 31 34 39 43 48 50";
            string             actualOutput  = objencrpt.EncryptText(input);

            Assert.AreEqual(actualOutput, expetedOutput);
        }
        public void DecryptMessageTest2()
        {
            EncryptDecryptText objencrpt     = new EncryptDecryptText();
            string             input         = "hae and via ecy numsp 5 6 10";
            string             expetedOutput = "have a nice day";
            string             actualOutput  = objencrpt.DecryptText(input);

            Assert.AreEqual(actualOutput, expetedOutput);
        }