Manually merged.

This commit is contained in:
Oliver Hauff 2021-12-08 17:57:30 +01:00
parent d5832e010e
commit c7c9f252af
112 changed files with 1127 additions and 352 deletions

View file

@ -12,9 +12,15 @@ namespace TestShareeLib.Model.MiniSurvey
[Test]
public void TestCtor()
{
Assert.That(
new MiniSurveyModel().Questions.Count,
Is.EqualTo(0),
"Question collection must not be null");
Assert.That(
new MiniSurveyModel().Questions,
Is.Not.Null);
Is.EqualTo(0),
"Question collection must not be null");
}
}
}