using NUnit.Framework; using TINK.ViewModel.LegalInformation; namespace TestTINKLib.Fixtures.ObjectTests.ViewModel.LegalInformation { [TestFixture] public class TestLegalInformationViewModel { [Test] public void TestOnAppearing() { var viewModel = new LegalInformationPageViewModel( "Host", "gtcResourcePath", "privacyResourcePath", "impressResourcePath", false, (url) => string.Empty, () => null, (resourceUrls) => { }); } } }