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