public void Search_ReturnsCollectionOfTypeSearchResult()
        {
            // Arrange
            var req = new SearchRequest()
            {
                ArrAirportCode = "MEL",
                ArrDate = DateTime.Parse("1/1/2005"),
                DeptAirportCode = "DEL",
                DeptDate = DateTime.Parse("1/1/2005")
            };
            var flightSearchRepository = new Mock<IFlightSearchRepository>();
            var helper = new Mock<IHelper>();
            NameValueCollection Parameters = new NameValueCollection();
            Parameters.Add("DepartureAirportCode", "MEL");
            IEnumerable<SearchResult> SearchRes = Enumerable.Empty<SearchResult>();
            var MokResult = new Mock<IEnumerable<SearchResult>>();
            helper.Setup(e => e.GetBaseUrl()).Returns("http://localhost");

            flightSearchRepository.Setup(e => e.Search(
                new List<Provider> { new Provider() { ProviderUri  = "",
                                                      JsonDataPropertyName = ""
                                                    }
                                    }, Parameters)).Returns(Task.FromResult<IEnumerable<SearchResult>>(SearchRes)) ;

            HomeController sut = new HomeController(flightSearchRepository.Object, helper.Object);

            // Act
            var actual = sut.Search(req);

            // Assert
            flightSearchRepository.Verify(s => s.Search(It.IsAny<List<Provider>>(), It.IsAny<NameValueCollection>()), Times.Once);
            Assert.IsInstanceOfType(((ViewResult)actual.Result).Model,typeof(List<SearchResult>));
        }
        public void Index()
        {
            // Arrange
            HomeController controller = new HomeController();

            // Act
            ViewResult result = controller.Index() as ViewResult;

            // Assert
            Assert.IsNotNull(result);
        }