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

17 lines
341 B
C#
Raw Normal View History

2021-08-01 17:24:15 +02:00
using NUnit.Framework;
using TINK.Model.MiniSurvey;
namespace TestShareeLib.Model.MiniSurvey
{
[TestFixture]
public class TestQuestionModel
{
public void TestCtro()
{
Assert.That(
2022-08-30 15:42:25 +02:00
new QuestionModel().PossibleAnswers.Count,
2022-01-04 18:54:03 +01:00
Is.EqualTo(1));
2021-08-01 17:24:15 +02:00
}
}
}