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