en.stepTest(player, "yes");
assertEquals("Woo! What #cloaks did you bring?", getReply(npc));
// Give her all but the last - Thrice to test the possible answers
for (final String itemName : CLOAKS.subList(1, CLOAKS.size())) {
en.stepTest(player, itemName);
assertEquals("Oh, I'm disappointed. You don't really have "
+ Grammar.a_noun(itemName) + " with you.", getReply(npc));
final Item cloak = new Item(itemName, "", "", null);
player.getSlot("bag").add(cloak);