package rebelsky.vec; import junit.framework.Test; import junit.framework.TestSuite; /** * A simple test of points. * * @author Samuel A. Rebelsky * @version 1.0 of September 2004 */ public class PointTest extends Vec2DTest { public Vec2D coords2point(double _x, double _y) { return new Point(_x, _y); } // coords2point public static Test suite() { return new TestSuite(PointTest.class); } // suite() } // PointTest