mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
16 lines
272 B
C#
16 lines
272 B
C#
using NUnit.Framework;
|
|
using TINK.Model.MiniSurvey;
|
|
|
|
namespace TestShareeLib.Model.MiniSurvey
|
|
{
|
|
[TestFixture]
|
|
public class TestQuestionModel
|
|
{
|
|
public void TestCtro()
|
|
{
|
|
Assert.That(
|
|
new QuestionModel().PossibleAnswers.Count,
|
|
Is.EqualTo(1));
|
|
}
|
|
}
|
|
}
|