mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
16 lines
No EOL
432 B
C#
16 lines
No EOL
432 B
C#
using NUnit.Framework;
|
|
using TINK.ViewModel.Login;
|
|
|
|
namespace TestTINKLib.Fixtures.ObjectTests.ViewModel.CopriWebView
|
|
{
|
|
[TestFixture]
|
|
public class TestManageAccountViewModel
|
|
{
|
|
[Test]
|
|
public void TestUrl()
|
|
{
|
|
var viewModel = new ManageAccountViewModel("Keks", "Merchant", "Hosti");
|
|
Assert.AreEqual("https://Hosti?sessionid=KeksMerchant", viewModel.Uri);
|
|
}
|
|
}
|
|
} |