public void TestGetRecipeByTitle()
        {
            IRecipeDBManager db     = new RecipeContext();
            Recipe           recipe = db.GetRecipeByTitle("Apple Crisp");

            Assert.NotNull(recipe);
            Assert.AreEqual(recipe.RecipeTitle, "Apple Crisp");
            Assert.Null(recipe.Ingredients);
            Assert.Null(recipe.Utensils);

            Recipe notARecipe = db.GetRecipeByTitle("Not a recipe name");

            Assert.IsNull(notARecipe);
        }