mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
23 lines
496 B
C#
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) => { });
|
|
}
|
|
}
|
|
}
|