sharee.bike-App/TestTINKLib/Fixtures/ObjectTests/ViewModel/Info/TestInfoViewModel.cs

16 lines
409 B
C#
Raw Normal View History

2021-07-12 21:31:46 +02:00
using NUnit.Framework;
using TINK.ViewModel.Info;
namespace TestTINKLib.Fixtures.ObjectTests.ViewModel.Info
{
[TestFixture]
public class TestInfoViewModel
{
[Test]
public void TestOnAppearing()
{
2022-01-22 18:28:01 +01:00
var viewModel = new InfoPageViewModel("Hosti", "agbResourcePath", "privacyResourcePath", "impressResourcePath", false, (url) => string.Empty);
2021-07-12 21:31:46 +02:00
}
}
}