Package org.onebusaway.transit_data_federation.impl

Examples of org.onebusaway.transit_data_federation.impl.RouteCollectionSearchServiceImpl.initialize()


    Mockito.verify(_refreshService).refresh(
        RefreshableResources.ROUTE_COLLECTION_SEARCH_DATA);

    RouteCollectionSearchServiceImpl searchService = new RouteCollectionSearchServiceImpl();
    searchService.setBundle(_bundle);
    searchService.initialize();

    SearchResult<AgencyAndId> ids = searchService.searchForRoutesByName("10",
        10, MIN_SCORE);
    assertEquals(1, ids.size());
    assertEquals(routeA.getId(), ids.getResult(0));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.