3.0.257 merged

This commit is contained in:
Oliver Hauff 2022-01-04 18:48:58 +01:00
parent de8d5f8414
commit b6fb6394db
155 changed files with 805 additions and 5751 deletions

View file

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

View file

@ -9,8 +9,8 @@ namespace TestShareeLib.Model.MiniSurvey
public void TestCtro()
{
Assert.That(
new MiniSurveyModel.QuestionModel().PossibleAnswers.Count,
Is.EqualTo(1));
new MiniSurveyModel.QuestionModel().PossibleAnswers,
Is.Not.Null);
}
}
}