зеркало из https://github.com/DeGsoft/maui-linux.git
48 строки
918 B
C#
48 строки
918 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Core.UnitTests;
|
|
|
|
namespace Xamarin.Forms.Xaml.UnitTests
|
|
{
|
|
public partial class TestXmlnsUsing : ContentPage
|
|
{
|
|
public TestXmlnsUsing()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public TestXmlnsUsing(bool useCompiledXaml)
|
|
{
|
|
//this stub will be replaced at compile time
|
|
}
|
|
|
|
[TestFixture]
|
|
class Tests
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
Device.PlatformServices = new MockPlatformServices();
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
Application.Current = null;
|
|
Device.PlatformServices = null;
|
|
}
|
|
|
|
[TestCase(true)]
|
|
[TestCase(false)]
|
|
public void SupportUsingXmlns(bool useCompiledXaml)
|
|
{
|
|
var page = new TestXmlnsUsing(useCompiledXaml);
|
|
Assert.That(page.Content, Is.Not.Null);
|
|
Assert.That(page.Content, Is.TypeOf<CustomXamlView>());
|
|
}
|
|
}
|
|
}
|
|
}
|