sharee.bike-App/TestShareeLib/Model/MiniSurvey/TestMiniSurveyModel.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

19 lines
321 B
C#

using NUnit.Framework;
using TINK.Model.MiniSurvey;
namespace TestShareeLib.Model.MiniSurvey
{
[TestFixture]
public class TestMiniSurveyModel
{
[Test]
public void TestCtor()
{
Assert.That(
new MiniSurveyModel().Questions.Count,
Is.EqualTo(0),
"Question collection must not be null");
}
}
}