...

/

Wordz Design Evaluation and Optimization

Wordz Design Evaluation and Optimization

Continue ending the game with a triangulating response to guess and design review.

It’s time to add some boundary condition tests and double-check our logic.

Handling guesses after game over

We need a couple more tests around the boundary conditions of the game over detection. The first one drives out the response to an incorrect guess being submitted after a correct guess:

Press + to interact
@Test
void rejectsGuessAfterGameOver(){
var gameOver = new Game(PLAYER, CORRECT_WORD, 1, true);
givenGameInRepository( gameOver );
GuessResult result = wordz.assess(PLAYER, WRONG_WORD);
assertThat(result.isError()).isTrue();
}

There are a couple of design decisions captured in this test:

  • Once the game ends, we record this in a new field, isGameOver, in the Game class.          

  • This new field will need to be set whenever the game ends. We’ll need more tests to drive that behavior out.

  • We’ll use a simple error-reporting mechanism—a new field, isError, in the GuessResult class.

This leads to a bit of automated refactoring to add the ...