sharee.bike-App/TestShareeLib/Model/MiniSurvey/TestMiniSurveyModel.cs
Oliver Hauff e321764119 Mini survey added.
Minor fiexes.
2021-08-01 17:24:15 +02:00

21 lines
405 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,
Is.Not.Null);
}
}
}