package rebelsky.linear; import rebelsky.io.Pen; /** * Test my stub linear structure, primarily to illustrate * what happens in LinearTester. * * @author Samuel A. Rebelsky * @version 1.0 of October 2004 */ public class StubLinearTester { public static void main(String[] args) { LinearTester lt = new LinearTester(new StubLinear(), new Pen()); lt.testSuite(); } // main(String[]) } // class StubLinearTester