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

17 lines
272 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
{
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestQuestionModel
{
public void TestCtro()
{
Assert.That(
new QuestionModel().PossibleAnswers.Count,
Is.EqualTo(1));
}
}
2021-08-01 17:24:15 +02:00
}