Exemple #1
0
        public void TestGetActiveOutgoingFlightsForIncorrectAirport()
        {
            List <Flight> flights = flightsService.GetActiveOutgoingFlightsAsync("INCORRECT_CODE").Result;

            Assert.IsNotNull(flights);
            Assert.AreEqual(0, flights.Count);
        }