}
public void testNormalizeLineString5() throws Exception {
LineString l = (LineString) reader.read(
"LINESTRING (200 340, 140 240, 140 160, 60 240, 140 240, 200 340)");
l.normalize();
LineString expectedValue = (LineString) reader.read(
"LINESTRING (200 340, 140 240, 60 240, 140 160, 140 240, 200 340)");
assertEqualsExact(expectedValue, l);
}