sharee.bike-App/TestShareeLib/ViewModel/Info/TestInfoViewModel.cs

24 lines
429 B
C#
Raw Normal View History

2022-10-03 17:55:10 +02:00
using NUnit.Framework;
2021-07-12 21:31:46 +02:00
using TINK.ViewModel.Info;
namespace TestTINKLib.Fixtures.ObjectTests.ViewModel.Info
{
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestInfoViewModel
{
[Test]
public void TestOnAppearing()
{
2022-10-03 17:55:10 +02:00
var viewModel = new InfoPageViewModel(
"Hosti",
"agbResourcePath",
"privacyResourcePath",
"impressResourcePath",
false,
(url) => string.Empty,
() => null,
(resourceUrls) => { });
2022-09-06 16:08:19 +02:00
}
}
2021-07-12 21:31:46 +02:00
}