public void testFixedScheduleBlocks() {
LocalizedServiceId lsid = lsid("serviceId");
StopEntryImpl stop = stop("stop");
Trip tripA = new Trip();
tripA.setId(aid("tripA"));
tripA.setRoute(_route);
tripA.setBlockId("blockA");
TripEntryImpl tripEntryA = trip("tripA").setRoute(_routeEntry).setServiceId(
lsid);
_graph.putTripEntry(tripEntryA);
addStopTime(tripEntryA, stopTime().setStop(stop));
Trip tripB = new Trip();
tripB.setId(aid("tripB"));
tripB.setRoute(_route);
tripB.setBlockId("blockA");
TripEntryImpl tripEntryB = trip("tripB").setRoute(_routeEntry).setServiceId(
lsid);
_graph.putTripEntry(tripEntryB);
addStopTime(tripEntryB, stopTime().setStop(stop));
Trip tripC = new Trip();
tripC.setId(aid("tripC"));
tripC.setRoute(_route);
tripC.setBlockId("blockB");
TripEntryImpl tripEntryC = trip("tripC").setRoute(_routeEntry).setServiceId(
lsid);
_graph.putTripEntry(tripEntryC);
addStopTime(tripEntryC, stopTime().setStop(stop));