Exemplo n.º 1
0
        public void discovered_when_type_a_contained_consonant()
        {
            HangmanForTest hangman = new HangmanForTest("word");

            hangman.type(CONTAINED_CONSONANT);

            Assert.AreEqual("wo__", hangman.discovered());
        }