mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
23 lines
429 B
C#
23 lines
429 B
C#
using NUnit.Framework;
|
|
using TINK.ViewModel.Info;
|
|
|
|
namespace TestTINKLib.Fixtures.ObjectTests.ViewModel.Info
|
|
{
|
|
[TestFixture]
|
|
public class TestInfoViewModel
|
|
{
|
|
[Test]
|
|
public void TestOnAppearing()
|
|
{
|
|
var viewModel = new InfoPageViewModel(
|
|
"Hosti",
|
|
"agbResourcePath",
|
|
"privacyResourcePath",
|
|
"impressResourcePath",
|
|
false,
|
|
(url) => string.Empty,
|
|
() => null,
|
|
(resourceUrls) => { });
|
|
}
|
|
}
|
|
}
|