mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-07-02 18:06:30 +02:00
Version 3.0.381
This commit is contained in:
parent
f963c0a219
commit
3a363acf3a
1525 changed files with 60589 additions and 125098 deletions
|
@ -0,0 +1,18 @@
|
|||
using NUnit.Framework;
|
||||
using ShareeBike.Model.MiniSurvey;
|
||||
|
||||
namespace SharedBusinessLogic.Tests.Model.MiniSurvey
|
||||
{
|
||||
[TestFixture]
|
||||
public class TestMiniSurveyModel
|
||||
{
|
||||
[Test]
|
||||
public void TestCtor()
|
||||
{
|
||||
Assert.That(
|
||||
new MiniSurveyModel().Questions.Count,
|
||||
Is.EqualTo(0),
|
||||
"Question collection must not be null");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
using NUnit.Framework;
|
||||
using ShareeBike.Model.MiniSurvey;
|
||||
|
||||
namespace SharedBusinessLogic.Tests.Model.MiniSurvey
|
||||
{
|
||||
[TestFixture]
|
||||
public class TestQuestionModel
|
||||
{
|
||||
public void TestCtro()
|
||||
{
|
||||
Assert.That(
|
||||
new QuestionModel().PossibleAnswers.Count,
|
||||
Is.EqualTo(1));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue