summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/TypeLoader.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/TypeLoader.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/TypeLoader.xaml.cs54
1 files changed, 54 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/TypeLoader.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/TypeLoader.xaml.cs
new file mode 100644
index 00000000..62b4cb4c
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/TypeLoader.xaml.cs
@@ -0,0 +1,54 @@
+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> ());
+ }
+ }
+ }
+} \ No newline at end of file