sharee.bike-App/SharedBusinessLogic.Tests/ViewModel/CopriWebView/TestRegisterPageViewModel.cs
2024-04-09 12:53:23 +02:00

15 lines
390 B
C#

using NUnit.Framework;
using ShareeBike.ViewModel.CopriWebView;
namespace SharedBusinessLogic.Tests.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"));
}
}