sharee.bike-App/SharedBusinessLogic.Tests/Model/MiniSurvey/TestMiniSurveyModel.cs

19 lines
339 B
C#
Raw Normal View History

2021-08-01 17:24:15 +02:00
using NUnit.Framework;
2024-04-09 12:53:23 +02:00
using ShareeBike.Model.MiniSurvey;
2021-08-01 17:24:15 +02:00
2024-04-09 12:53:23 +02:00
namespace SharedBusinessLogic.Tests.Model.MiniSurvey
2021-08-01 17:24:15 +02:00
{
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestMiniSurveyModel
{
[Test]
public void TestCtor()
{
Assert.That(
new MiniSurveyModel().Questions.Count,
Is.EqualTo(0),
"Question collection must not be null");
}
}
2021-08-01 17:24:15 +02:00
}