import LinkedList; import rebelsky.io.SimpleInput; import rebelsky.io.SimpleOutput; import rebelsky.util.ListTester; /** * Test the operations on a linked list. *
* Copyright (c) 1998 Samuel A. Rebelsky. All rights reserved. * * @version 1.0 of March 1998 * @author Samuel A. Rebelsky */ public class LinkedListTester { /** * Build and run the tester. */ public static void main(String[] args) { ListTester tester = new ListTester(new LinkedList(), new SimpleInput(), new SimpleOutput(), true); tester.test(); } // main(String[]) } // LinkedListTester