Exemple #1
0
        public void GetInvalidPickupDates()
        {
            int    locationId  = 66;
            string categoryId  = "A";
            string pickupYear  = DateTime.Now.Year.ToString();
            string pickupMonth = DateTime.Now.Month.ToString("MM");

            //Act
            var response = controller.GetInvalidPickupDates(locationId, categoryId, pickupYear, pickupMonth);

            //Assert
            Assert.IsNotNull(response);
        }