Exemplo n.º 1
0
        public void FoundKeyInDictionary_TestForIfKeyIsNotFound_False()
        {
            Leetspeak testLeetspeak = new Leetspeak();
            char      character     = 'M';

            testLeetspeak.MakeDictionary();
            Assert.AreEqual(false, testLeetspeak.FoundKeyInDictionary(character));
        }
Exemplo n.º 2
0
        public void FoundKeyInDictionary_TestForIfKeyIsFound_True()
        {
            Leetspeak testLeetspeak = new Leetspeak();
            char      character     = 'e';

            testLeetspeak.MakeDictionary();
            Assert.AreEqual(true, testLeetspeak.FoundKeyInDictionary(character));
        }