mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
15 lines
370 B
C#
15 lines
370 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, "de", (url) => string.Empty);
|
|
}
|
|
}
|
|
}
|