/** add throws ISE true if offer fails */
 public void testAddF() {
   Fail q = new Fail();
   try {
     q.add(one);
     shouldThrow();
   } catch (IllegalStateException success) {
   }
 }