private void testAddScore(int original, int add, int total) {
    Inventory_CE i = new Inventory_CE();
    Player_CE_085 p = new Player_CE_085(i, null);
    int actual = p.addScore(original, add);

    assertTrue(
        "I tested whether or not the Player's score was"
            + total
            + "after adding"
            + original
            + "and"
            + add
            + "and it should have returned"
            + actual,
        actual == total);
  }