public void menuItemIngredientConstructor_CreatesInstanceOfMenuItemIngredient_MenuItemIngredient()
        {
            //Arrange, Act
            string             menuItemIngredientDescription = "Avocadoes";
            int                menuItemsId           = 1;
            int                storeId               = 1;
            MenuItemIngredient newMenuItemIngredient = new MenuItemIngredient(menuItemIngredientDescription, menuItemsId, storeId);

            //Assert
            Assert.AreEqual(typeof(MenuItemIngredient), newMenuItemIngredient.GetType());
        }