mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
26 lines
632 B
C#
26 lines
632 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");
|
|
|
|
Assert.That(
|
|
new MiniSurveyModel().Questions,
|
|
Is.EqualTo(0),
|
|
"Question collection must not be null");
|
|
}
|
|
}
|
|
}
|