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

23 lines
496 B
C#

using NUnit.Framework;
using ShareeBike.ViewModel.LegalInformation;
namespace SharedBusinessLogic.Tests.Fixtures.ObjectTests.ViewModel.LegalInformation
{
[TestFixture]
public class TestLegalInformationViewModel
{
[Test]
public void TestOnAppearing()
{
var viewModel = new LegalInformationPageViewModel(
"Host",
"gtcResourcePath",
"privacyResourcePath",
"impressResourcePath",
false,
(url) => string.Empty,
() => null,
(resourceUrls) => { });
}
}
}