using Model; namespace Model_UnitTests { public class Recipe_UT { [Fact] public void TestVoidConstructor() { Recipe r = new Recipe( title: "test recipe", id: null, authorMail: "test@test.fr"); Assert.NotNull(r.Title); } } }