public void AddToList_ReturnNotNull()
        {
            KomodoCafeContent content = new KomodoCafeContent();

            content.MealName = "HumCar";
            MenuContentRepository repository = new MenuContentRepository();

            repository.AddMenuItems(content);
            KomodoCafeContent contentfromMenu = repository.GetMenuItemsToDelete("HumCar");

            Assert.IsNotNull(contentfromMenu);
        }