/** Tests the resetScore method that the score is 0. */
 @Test
 @SuppressWarnings("checkstyle:magicnumber")
 public final void testresetScore() {
   player.addScore(10);
   player.resetScore();
   Assert.assertEquals(0, player.getScore());
 }