}
@Test
public void testLaneLinks() throws IOException {
Lane begLane = conn.getLaneRepository().getByID("beg_0");
List<Link> links = begLane.queryReadLinks().get();
Set<String> linkIDs = new HashSet<String>();
Set<String> intLinkIDs = new HashSet<String>();
for (Link link : links) {
linkIDs.add(link.getNextNonInternalLane().getID());
intLinkIDs.add(link.getNextInternalLane().getID());