54 строки
1.2 KiB
C#
54 строки
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Xamarin.Forms;
|
|
|
|
using NUnit.Framework;
|
|
using Xamarin.Forms.Core.UnitTests;
|
|
|
|
namespace Xamarin.Forms.Xaml.UnitTests
|
|
{
|
|
public partial class TypeLoader : ContentPage
|
|
{
|
|
public TypeLoader ()
|
|
{
|
|
InitializeComponent ();
|
|
}
|
|
|
|
public TypeLoader (bool useCompiledXaml)
|
|
{
|
|
//this stub will be replaced at compile time
|
|
}
|
|
|
|
[TestFixture]
|
|
public class Tests
|
|
{
|
|
[SetUp]
|
|
public void SetUp ()
|
|
{
|
|
Device.PlatformServices = new MockPlatformServices ();
|
|
Application.Current = new MockApplication ();
|
|
}
|
|
|
|
[TestCase (false)]
|
|
[TestCase (true)]
|
|
public void LoadTypeFromXmlns (bool useCompiledXaml)
|
|
{
|
|
TypeLoader layout = null;
|
|
Assert.DoesNotThrow (() => layout = new TypeLoader (useCompiledXaml));
|
|
Assert.NotNull (layout.customview0);
|
|
Assert.That (layout.customview0, Is.TypeOf<CustomView> ());
|
|
}
|
|
|
|
[TestCase (false)]
|
|
[TestCase (true)]
|
|
public void LoadTypeFromXmlnsWithoutAssembly (bool useCompiledXaml)
|
|
{
|
|
TypeLoader layout = null;
|
|
Assert.DoesNotThrow (() => layout = new TypeLoader (useCompiledXaml));
|
|
Assert.NotNull (layout.customview1);
|
|
Assert.That (layout.customview1, Is.TypeOf<CustomView> ());
|
|
}
|
|
}
|
|
}
|
|
} |