40 строки
910 B
C#
40 строки
910 B
C#
using System;
|
|
using NUnit.Framework;
|
|
using Xamarin.Forms.Core.UnitTests;
|
|
|
|
namespace Xamarin.Forms.Xaml.UnitTests
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Skip)]
|
|
public partial class FactoryMethodMissingCtor : MockView
|
|
{
|
|
public FactoryMethodMissingCtor()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public FactoryMethodMissingCtor(bool useCompiledXaml)
|
|
{
|
|
//this stub will be replaced at compile time
|
|
}
|
|
|
|
[TestFixture]
|
|
public class Tests
|
|
{
|
|
[SetUp]
|
|
public void SetUp()
|
|
{
|
|
Device.PlatformServices = new MockPlatformServices();
|
|
}
|
|
|
|
[TestCase(false)]
|
|
[TestCase(true)]
|
|
public void Throw(bool useCompiledXaml)
|
|
{
|
|
if (useCompiledXaml)
|
|
Assert.Throws(new XamlParseExceptionConstraint(7, 4), () => MockCompiler.Compile(typeof(FactoryMethodMissingCtor)));
|
|
else
|
|
Assert.Throws<MissingMethodException>(() => new FactoryMethodMissingCtor(useCompiledXaml));
|
|
}
|
|
}
|
|
}
|
|
} |