* Testing equipping a corset on an empty chest slot.
*/
@Test
public void testEquipCorsetOnEmptyChestSlot() {
System.out.println("Testing equipping a corset on an empty chest slot");
Corset corset = new Corset();
Henchwoman h = new Henchwoman();
h.unequip(h.equipment.getChest());
assertEquals(h.equipment.getChest(), null);