Beispiel #1
0
        public void TestCanGetToast()
        {
            DishRepository repo = new DishRepository();
            string         name = repo.GetDishName("morning", 2);

            Assert.AreEqual("toast", name);
        }
Beispiel #2
0
        public void TestCanGetSteak()
        {
            DishRepository repo = new DishRepository();
            string         name = repo.GetDishName("evening", 1);

            Assert.AreEqual("steak", name);
        }