public void IncorrectlyGuessingTheWordDeductsAttempts() { var attemptsLeft = _hangman.GetAttemptsLeft(); _hangman.GuessLetter('0'); _hangman.GetAttemptsLeft().Should().Equals(attemptsLeft - 1); }