/** 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()); }
/** * Tests the behaviour of the addPoints method when adding a negative amount of points to the * players score. */ @Test @SuppressWarnings("checkstyle:magicnumber") public final void testAddNegativeScore() { player.addScore(-10); Assert.assertEquals(-10, player.getScore()); }