@Test
 public void testGetBusListByStation() {
   BusStation s = null;
   try {
     s = iBusStationService.findBusStation("武科大新校区");
   } catch (Exception e) {
     e.printStackTrace();
   }
   if (s != null) {
     Set<BusRoute> set = s.getRouteStartStations();
     for (BusRoute b : set) {
       System.out.println(b);
     }
   }
 }