* Testing adding an Item to the first and only, empty bag.
*/
@Test
public void testAddItemToEmptyFirstBag() {
System.out.println("Adding an Item to an empty, first bag.");
Sword s = new Sword();
Inventory inventory = new Inventory();
inventory.addBag();
boolean result = inventory.addItem(s);
boolean expResult = true;
assertEquals(expResult, result);