mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
16 lines
340 B
C#
16 lines
340 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 InfoViewModel("Hosti", false, (url) => string.Empty);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|