mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
e321764119
Minor fiexes.
16 lines
349 B
C#
16 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);
|
|
}
|
|
}
|
|
}
|