Doublet doublet = new Doublet();
Sword sword = new Sword();
Stilleto stilleto = new Stilleto();
Stilleto stilleto2 = new Stilleto();
Henchwoman h = new Henchwoman();
h.inventory.addBag();
h.addToInventory(corset);
h.addToInventory(doublet);
h.addToInventory(sword);
h.addToInventory(stilleto);
assertEquals(h.inInventory(corset), true);
assertEquals(h.inInventory(doublet), true);
assertEquals(h.inInventory(sword), true);
assertEquals(h.inInventory(stilleto), true);
assertEquals(h.inInventory(stilleto2), false);
}