sharee.bike-App/TestShareeLib/Model/MiniSurvey/TestQuestionModel.cs
Oliver Hauff e321764119 Mini survey added.
Minor fiexes.
2021-08-01 17:24:15 +02:00

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);
}
}
}