maui-linux/Xamarin.Forms.Xaml.UnitTests/FactoryMethodMissingCtor.xa...

35 строки
782 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();
}
[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());
}
}
}
}