sharee.bike-App/SharedBusinessLogic.Tests/ViewModel/LegalInformation/TestLegalInformationViewModel.cs

24 lines
496 B
C#
Raw Normal View History

2023-11-21 15:26:57 +01:00
using NUnit.Framework;
2024-04-09 12:53:23 +02:00
using ShareeBike.ViewModel.LegalInformation;
2023-11-21 15:26:57 +01:00
2024-04-09 12:53:23 +02:00
namespace SharedBusinessLogic.Tests.Fixtures.ObjectTests.ViewModel.LegalInformation
2023-11-21 15:26:57 +01:00
{
[TestFixture]
public class TestLegalInformationViewModel
{
[Test]
public void TestOnAppearing()
{
var viewModel = new LegalInformationPageViewModel(
"Host",
"gtcResourcePath",
"privacyResourcePath",
"impressResourcePath",
false,
(url) => string.Empty,
() => null,
(resourceUrls) => { });
}
}
}