Ejemplo n.º 1
0
        public void SetGetModifiedPhrase_TestForSetGetModifiedPhrase_CharArray()
        {
            Leetspeak testLeetspeak = new Leetspeak();

            testLeetspeak.SetModifiedPhrase(new List <char> {
                'D', 'u', 'd', 'e'
            });
            CollectionAssert.AreEqual(new List <char> {
                'D', 'u', 'd', 'e'
            }, testLeetspeak.GetModifiedPhrase());
        }