public void shouldGetNumberOfRestaurantsForManagerWithOneRestaurant()
        {
            RestaurantManager theManager = new RestaurantManager();

            Restaurant firstRestaurant = new Random_Restaurant_Picker.Models.Restaurant("Matt's Pizza", "770-644-4488", "$", "Senoia GA", "9:00 - 5:00", "5 Miles", 4.5, 5, "MenuURL.com", "ImageURL.com", "5");

            theManager.AddRestaurant(firstRestaurant);

            Assert.AreEqual(1, theManager.GetNumberOfRestaurants());
        }
Esempio n. 2
0
        public void shouldGetRandomRestaurant()
        {
            RestaurantManager theManager    = new RestaurantManager();
            Restaurant        theRestaurant = new Random_Restaurant_Picker.Models.Restaurant("Katy Lou's", "770-644-4488", "$$$", "Senoia GA", "8:00 - 6:00", "0 Miles", 4.9, 3, "MenuURL.com", "ImageURL.com", "6");

            theManager.AddRestaurant(theRestaurant);

            theManager.PickRandomRestaurant(0, theManager.GetNumberOfRestaurants());

            Assert.AreEqual("Restaurant (name: Katy Lou's price: $$$ location: Senoia GA hours: 8:00 - 6:00 distance: 0 Miles review score: 4.9 review count: 3 menu URL: MenuURL.com image URL: ImageURL.com id: 6)", theManager.GetRandomRestaurant().ToString());
        }
        public void shouldGetNumberOfRestaurantsForManagerWithManyRestaurants()
        {
            RestaurantManager theManager = new RestaurantManager();

            Restaurant firstRestaurant  = new Random_Restaurant_Picker.Models.Restaurant("Matt's Pizza", "770-644-4488", "$", "Senoia GA", "9:00 - 5:00", "5 Miles", 4.5, 5, "MenuURL.com", "ImageURL.com", "5");
            Restaurant secondRestaurant = new Random_Restaurant_Picker.Models.Restaurant("Katy Lou's", "770-644-4488", "$$$", "Senoia GA", "8:00 - 6:00", "5 Miles", 4.9, 3, "MenuURL.com", "ImageURL.com", "6");
            Restaurant thirdRestaurant  = new Random_Restaurant_Picker.Models.Restaurant("Senoia Coffee", "770-644-4488", "$$", "Senoia GA", "9:00 - 2:00", "5 Miles", 5, 0, "MenuURL.com", "ImageURL.com", "7");

            theManager.AddRestaurant(firstRestaurant);
            theManager.AddRestaurant(secondRestaurant);
            theManager.AddRestaurant(thirdRestaurant);

            Assert.AreEqual(3, theManager.GetNumberOfRestaurants());
        }
        public void shouldGetNumberOfRestaurantsForEmptyManager()
        {
            RestaurantManager theManager = new RestaurantManager();

            Assert.AreEqual(0, theManager.GetNumberOfRestaurants());
        }