public async Task TimeTable(string stopId, string routeId)
        {
            TimeTableController controller = new TimeTableController();
            var result = controller.TimeTable("11", "2215") as Task <ActionResult>;

            Assert.IsNotNull(result);
        }
        public async Task Index()
        {
            TimeTableController controller = new TimeTableController();
            var result = controller.Index() as Task <ActionResult>;

            Assert.IsNotNull(result);
        }