Ejemplo n.º 1
0
        public void Recipe_Delete_RemoveObjectFromDatabase()
        {
            Recipe testRecipe = new Recipe("Pot Pie", "Microwave it");

            testRecipe.Save();

            testRecipe.Delete();

            Assert.Equal(0, Recipe.GetAll().Count);
        }