Exemplo n.º 1
0
  private void testInitialScore(int expected) {
    Inventory_CE i = new Inventory_CE();
    Player_CE_085 p = new Player_CE_085(i, null);
    int actual = p.getScore();

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