public void KetoMenuFactory_CreatesKetoLunchMenu()
        {
            KetoMenuFactory menuFactory = new KetoMenuFactory();

            ILunchMenu lunch = menuFactory.CreateLunchMenu();

            lunch.GetMenu().Should().BeEquivalentTo("Keto Lunch: Caesar salad, diet soda");
        }
        public void KetoMenuFactory_CreatesKetoBreakfastMenu()
        {
            KetoMenuFactory menuFactory = new KetoMenuFactory();

            IBreakfastMenu breakfast = menuFactory.CreateBreakfastMenu();

            breakfast.GetMenu().Should().BeEquivalentTo("Keto Breakfast: Bacon, eggs, coffee with cream and splenda");
        }