using Model; namespace Model_UnitTests { public class Recipe_UT { [Fact] public void TestVoidConstructor() { Recipe r = new Recipe( title: "test recipe", type: RecipeType.Unspecified, priority: Priority.Easy); Assert.NotNull(r.Title); } } }