Version 3.0.337

This commit is contained in:
Anja Müller-Meißner 2022-08-30 15:42:25 +02:00
parent fd0e63cf10
commit 573fe77e12
2336 changed files with 33688 additions and 86082 deletions

View file

@ -1,7 +1,5 @@
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections.Generic;
using NUnit.Framework;
using TINK.ViewModel.MiniSurvey.Question;
namespace TestShareeLib.ViewModel.MiniSurvey.Question
@ -14,7 +12,7 @@ namespace TestShareeLib.ViewModel.MiniSurvey.Question
{
var vm = new CheckOneViewModel(
new KeyValuePair<string, string>("q5", "wie ist das Wetter heute"),
new Dictionary<string, string> { { "opt1", "regnerisch"}, { "opt2", "bewölkt" }, { "opt3", "sonnig" } });
new Dictionary<string, string> { { "opt1", "regnerisch" }, { "opt2", "bewölkt" }, { "opt3", "sonnig" } });
Assert.That(
vm.Question.Key,

View file

@ -1,7 +1,5 @@
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections.Generic;
using NUnit.Framework;
using TINK.ViewModel.MiniSurvey.Question;
namespace TestShareeLib.ViewModel.MiniSurvey.Question
@ -43,7 +41,7 @@ namespace TestShareeLib.ViewModel.MiniSurvey.Question
new KeyValuePair<string, string>("q9", "War das essen heute gut?"));
vm.AnswerText = "Sehr wohlschmeckend!"; // Member is called if user enters text.
Assert.That(
vm.Answer.Key,
Is.EqualTo("Sehr wohlschmeckend!"),