3.0.267 merged

This commit is contained in:
Oliver Hauff 2022-01-04 18:54:03 +01:00
parent b6fb6394db
commit 67999ef4ae
171 changed files with 6473 additions and 1093 deletions

View file

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

View file

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