/** Test of after method, of class FastSelection. */
 @Test
 public void after() {
   System.out.println("after");
   java.util.Iterator itr = instance.after().iterator();
   while (itr.hasNext()) assertTrue(elem.compareTo((Double) itr.next()) <= 0);
 }