assertFalse(routeBefore.equals(routeAfter));
}
@Test
public void testGetShape() throws IOException {
Lane lane = conn.getLaneRepository().getByID("beg_0");
PathIterator it = lane.queryReadShape().get().getPathIterator(null);
assertFalse(it.isDone());
double[] coords = new double[2];
assertEquals(PathIterator.SEG_MOVETO, it.currentSegment(coords));
assertEquals( 0 , coords[0], DELTA);
assertEquals( -1.65, coords[1], DELTA);