sharee.bike-App/TestShareeLib/Model/MiniSurvey/TestMiniSurveyModel.cs

21 lines
405 B
C#
Raw Normal View History

2021-08-01 17:24:15 +02:00
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()
{
2021-12-08 17:57:30 +01:00
Assert.That(
2022-01-04 18:48:58 +01:00
new MiniSurveyModel().Questions,
Is.Not.Null);
2021-08-01 17:24:15 +02:00
}
}
}