public void testRemove() {
   put(milkshake, value);
   put(chips, value);
   subject.remove(milkshake);
   checkExists(false, milkshake);
   checkExists(true, chips);
 }