sharee.bike-App/TestShareeLib/Model/MiniSurvey/TestMiniSurveyModel.cs
2021-12-08 18:08:58 +01:00

22 lines
469 B
C#

using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Text;
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");
}
}
}