assertEquals(new Coordinate(30, 30), point.getCoordinate());
}
public void testNormalizeEmptyPoint() throws Exception {
Point point = (Point) reader.read("POINT EMPTY");
point.normalize();
assertEquals(null, point.getCoordinate());
}
public void testComparePoint() throws Exception {
Point p1 = (Point) reader.read("POINT (30 30)");