summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs
new file mode 100644
index 00000000..60ec785d
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/XNull.xaml.cs
@@ -0,0 +1,32 @@
+using Xamarin.Forms;
+
+using NUnit.Framework;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public partial class XNull : ContentPage
+ {
+ public XNull ()
+ {
+ InitializeComponent ();
+ }
+
+ public XNull (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ public class Tests
+ {
+ [TestCase(false)]
+ [TestCase(true)]
+ public void SupportsXNull (bool useCompiledXaml)
+ {
+ var layout = new XNull (useCompiledXaml);
+ Assert.True (layout.Resources.ContainsKey ("null"));
+ Assert.Null (layout.Resources ["null"]);
+ }
+ }
+ }
+} \ No newline at end of file