import CursoredListTester; import NodeBasedCursoredList; /** * A simple way to test node based cursored lists. * * @author Samuel A. Rebelsky * @version 1.0 of May 2000 */ public class NBCLTester { public static void main(String[] args) { CursoredListTester helper = new CursoredListTester( new NodeBasedCursoredList(), new SimpleInput(), new SimpleOutput()); helper.run(); } // main(String[]) } // NBCLTester