Exemplo n.º 1
0
        public void OtoZero_ChangesOtoNumberZero_true()
        {
            L1337speak newL1337speak = new L1337speak("This is not Elite.");

            char[] array = newL1337speak.StringToArray();
            L1337speak.OToZero(array);
            string newString     = string.Join("", array);
            string correctString = "This is n0t Elite.";

            Assert.AreEqual(correctString, newString);
        }