public void AddItemTest()
        //TEST PASSED
        {
            //Arrange

            List <string> ingredients = new List <string>()
            {
                "milk", "coffee", "sugar", "caramel syrup"
            };

            Meal latte = new Meal(4, "Cafe Latte", "A simple classic with pure sugar cane and locally sourced milk", ingredients, 3.99);

            List <string> ingredients2 = new List <string>()
            {
                "ham", "turkey", "swiss cheese", "mayonnaise", "lettuce", "tomato"
            };
            Meal clubSandwich = new Meal(12, "Komodo Club", "Smoked turkey breast and black-forest ham on sourdough bread with a homemade spread", ingredients2, 3.99);

            //Act
            _repo.AddItemToMenu(latte);
            _repo.AddItemToMenu(clubSandwich);

            //Assert
            int expected = 5;
            int actual   = _repo.GetFullMenu().Count;

            Assert.AreEqual(expected, actual);
        }