@Test
 public void checkSize() throws Exception {
   this.playerInventory = InventoryFactory.makePlayerInventory();
   assertTrue("Greater than or equal to zero", this.playerInventory.getSize() >= 0);
 }
 @Before
 public void makeInventory() throws Exception {
   this.playerInventory = InventoryFactory.makePlayerInventory();
 }