sharee.bike-App/TestShareeLib/ViewModel/LegalInformation/TestLegalInformationViewModel.cs
2023-11-21 15:26:57 +01:00

23 lines
476 B
C#

using NUnit.Framework;
using TINK.ViewModel.LegalInformation;
namespace TestTINKLib.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) => { });
}
}
}