Version 3.0.381

This commit is contained in:
Anja 2024-04-09 12:53:23 +02:00
parent f963c0a219
commit 3a363acf3a
1525 changed files with 60589 additions and 125098 deletions

View file

@ -0,0 +1,15 @@
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"));
}
}