/** PointTest: first draft of the PointTest class
 * Author: CPSC 111, Section 206, Spring 05-06
 * Date: Jan 26 2006
 *
 * Testing driver for Point class. So far, we can create a point and
 * check that its fields are set correctly.
 */

public class PointTest {

    public static void main ( String [] args ) {
        Point tester = new Point(7,9);
        System.out.println("tester x "+tester.getX() + " tester y "+tester.getY());
    }

}

