Exemplo n.º 1
0
        public void IncorrectlyGuessingTheWordDeductsAttempts()
        {
            var attemptsLeft = _hangman.GetAttemptsLeft();

            _hangman.GuessLetter('0');
            _hangman.GetAttemptsLeft().Should().Equals(attemptsLeft - 1);
        }