import LinearTester; import ArrayBasedStack; /** * A simple test of array-based stacks. Pushes all the values from the * command line, one-by-one, and then pops them all off. This should * print the command line in reverse order. */ public class ABS_Tester { public static void main(String[] args) { new LinearTester(new ArrayBasedStack(args.length), args); } // main(String[]) } // ABS_Tester