When the forfeit is implemented, it would be interesting to be able to differentiate games that have never been played on from games that have.
To be specific:
If no moves are ever played, there is no point in recording a winner and a forfeiter. There is no point in keeping a track of the game.
If the black player moved once but the red player never showed up, it is the same situation. After all, a malicious player could create many games that go stale just to tarnish the reputation of another player.
If both players have played at least once, then this can be considered a proper game, where a forfeit is one of the legitimate outcomes.
There is not much to test here. Remember that you added a new field, but if your blockchain state already contains games then they are missing that field, so the default value of the underlying type will be applied:
Although this game was already played on, the default uint value is applied:
Copy
...
+ moveCount: 0
...
In effect, your blockchain state is broken. Eventually examine the section on migrations to see how to update your blockchain state to avoid such a breaking change.
Restart your chain with --reset-once, create a new game, then:
How to implement a new moveCount field and increment it on play.
How to test your code to ensure that it functions as desired.
How, if your blockchain contains preexisting games, that the blockchain state is now effectively broken, since the move count field of those games is 0 by default (which can be corrected through migration).