import ArrayBasedStack;		// The kinds of stacks we want to test
import StackTester;		// A friendly helper class
import SimpleInput;		// To support input from the keyboard
import SimpleOutput;		// And output to the screen

/**
 * Test the node-based implementation of stacks, using our
 * handy-dandy generic stack tester.
 *
 * @author Samuel A. Rebelsky
 * @version 1.1 of November 1999
 */
public class ABSTester {
  public static void main(String[] args) {
    StackTester tester = 
      new StackTester(
        new ArrayBasedStack(),
        new SimpleInput(),
        new SimpleOutput());
    tester.run();
  } // main(String[])
} // class ABSTester

