Vertex from = graph.getVertex("osm:node:2003617278");
Vertex to = graph.getVertex("osm:node:40446276");
options.setRoutingContext(graph, from, to);
options.setMode(TraverseMode.BICYCLE);
ShortestPathTree spt = aStar.getShortestPathTree(options);
GraphPath path = spt.getPath(to, false);
// At the time of writing this test, the router simply doesn't find a path at all when highway=construction
// is filtered out, thus the null check.
if (path != null) {
for (Edge edge : path.edges) {
assertFalse("Path should not use the as-yet unbuilt Tilikum Crossing bridge.",