summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/DefaultCtorRouting2.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/DefaultCtorRouting2.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/DefaultCtorRouting2.xaml.cs57
1 files changed, 57 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/DefaultCtorRouting2.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/DefaultCtorRouting2.xaml.cs
new file mode 100644
index 00000000..05254770
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/DefaultCtorRouting2.xaml.cs
@@ -0,0 +1,57 @@
+using NUnit.Framework;
+using Xamarin.Forms.Core.UnitTests;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public partial class DefaultCtorRouting2 : ContentPage
+ {
+ [TypeConverter(typeof(IsCompiledTypeConverter))]
+ public bool IsCompiled { get; set; }
+
+ public DefaultCtorRouting2()
+ {
+ InitializeComponent();
+ }
+
+ [TestFixture]
+ class Tests
+ {
+ [SetUp]
+ public void Setup()
+ {
+ Device.PlatformServices = new MockPlatformServices();
+ }
+
+ [TearDown]
+ public void TearDown()
+ {
+ Device.PlatformServices = null;
+ Internals.XamlLoader.XamlFileProvider = null;
+ }
+
+ [Test]
+ public void ShouldBeCompiled()
+ {
+ var p = new DefaultCtorRouting2();
+ Assert.True(p.IsCompiled);
+ }
+
+ [Test]
+ public void ShouldntBeCompiled()
+ {
+ Internals.XamlLoader.XamlFileProvider = (t) => {
+ if (t == typeof(DefaultCtorRouting2))
+ return @"<?xml version=""1.0"" encoding=""UTF-8""?>
+<ContentPage xmlns=""http://xamarin.com/schemas/2014/forms""
+ xmlns:x=""http://schemas.microsoft.com/winfx/2009/xaml""
+ x:Class=""Xamarin.Forms.Xaml.UnitTests.DefaultCtorRouting2""
+ IsCompiled=""IsCompiled?"">
+</ContentPage>";
+ return null;
+ };
+ var p = new DefaultCtorRouting2();
+ Assert.False(p.IsCompiled);
+ }
+ }
+ }
+} \ No newline at end of file