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