mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 15:16:34 +01:00
16 lines
423 B
C#
16 lines
423 B
C#
|
using NUnit.Framework;
|
|||
|
using TINK.ViewModel.CopriWebView;
|
|||
|
|
|||
|
namespace TestShareeLib.ViewModel.CopriWebView
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestRegisterPageViewModel
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestUri()
|
|||
|
=> Assert.That(
|
|||
|
new RegisterPageViewModel("merch", "us", "host").Uri,
|
|||
|
Is.EqualTo("https://host/app/Account/1.%20Kundendaten?sessionid=merch&lang=us"));
|
|||
|
}
|
|||
|
}
|