public void testNewPointHere() {
DirectPosition here = new DirectPositionImpl(DefaultGeographicCRS.WGS84);
here.setOrdinate(0, 48.44);
here.setOrdinate(1, -123.37); // 48.44,-123.37
Point point = new PointImpl(here);
assertNotNull(point.getCoordinateReferenceSystem());
assertEquals(here.getCoordinateReferenceSystem(), point
.getCoordinateReferenceSystem());
assertEquals(here, point.getDirectPosition());
assertEquals(here.hashCode(), point.getDirectPosition().hashCode());
}