Exemplo n.º 1
0
        public void TtoSeven_ChangesTtoSeven_true()
        {
            L1337speak newL1337speak = new L1337speak("I am Elite.");

            char[] array = newL1337speak.StringToArray();
            L1337speak.TtoSeven(array);
            string newString     = string.Join("", array);
            string correctString = "I am Eli7e.";

            Assert.AreEqual(correctString, newString);
        }