/** remove throws NSEE if poll returns null */
 public void testRemoveF() {
   Fail q = new Fail();
   try {
     q.remove();
     shouldThrow();
   } catch (NoSuchElementException success) {
   }
 }