Beispiel #1
0
 /**
  * This test demonstrates the usage of the {@link Lane} object to get topological information.
  *
  * @throws IOException
  */
 @Test
 public void testGetBelongingEdge() throws IOException {
   Lane lane = conn.getLaneRepository().getByID("beg_0");
   Edge edge = lane.getParentEdge();
   assertEquals("beg", edge.getID());
 }