mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
e321764119
Minor fiexes.
20 lines
405 B
C#
20 lines
405 B
C#
using NUnit.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using TINK.Model.MiniSurvey;
|
|
|
|
namespace TestShareeLib.Model.MiniSurvey
|
|
{
|
|
[TestFixture]
|
|
public class TestMiniSurveyModel
|
|
{
|
|
[Test]
|
|
public void TestCtor()
|
|
{
|
|
Assert.That(
|
|
new MiniSurveyModel().Questions,
|
|
Is.Not.Null);
|
|
}
|
|
}
|
|
}
|