package username.sorting; import java.io.PrintWriter; import java.util.Comparator; import java.util.Random; import java.util.Vector; /** * Something that can test sorting routines. * * @author Samuel A. Rebelsky * @version 1.0 of May 2005 */ public class OOPVSTester { /** * Test a sorter and print the results. */ public void test(OutOfPlaceVectorSorter sorter) { PrintWriter pen = new PrintWriter(System.out, true); } // test(OutOfPlaceVectorSorter) } // class OOPVSTester