mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
16 lines
432 B
C#
16 lines
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|