import LinearTester; import ArrayBasedQueue; /** * A simple test of array-based queues. Adds all the values from the * command line, one-by-one, and then removes them all. This should * print the command line in order. */ public class ABQ_Tester { public static void main(String[] args) { new LinearTester(new ArrayBasedQueue(args.length), args); } // main(String[]) } // ABQ_Tester