use of org.onebusaway.transit_data_federation.impl.ExtendedCalendarServiceImpl in project onebusaway-application-modules by camsys.
the class BlockCalendarServiceImplTest method before.
@Before
public void before() {
_service = new BlockCalendarServiceImpl();
_calendarData = new CalendarServiceData();
_calendarService = new CalendarServiceImpl();
_calendarService.setData(_calendarData);
_extendedCalendarService = new ExtendedCalendarServiceImpl();
_extendedCalendarService.setCalendarService(_calendarService);
_service.setCalendarService(_extendedCalendarService);
}
Aggregations