summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs46
1 files changed, 46 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs
new file mode 100644
index 00000000..66aeac54
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs
@@ -0,0 +1,46 @@
+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 Issue2114 : Application
+ {
+ public Issue2114 ()
+ {
+ InitializeComponent ();
+ }
+
+ public Issue2114 (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ public class Tests
+ {
+ [SetUp]
+ public void SetUp ()
+ {
+ Device.PlatformServices = new MockPlatformServices ();
+
+ Current = null;
+ }
+
+ [TestCase (false)]
+ [TestCase (true)]
+ public void StaticResourceOnApplication (bool useCompiledXaml)
+ {
+ Issue2114 app;
+ Assert.DoesNotThrow (() => app = new Issue2114 (useCompiledXaml));
+
+ Assert.True (Current.Resources.ContainsKey ("ButtonStyle"));
+ Assert.True (Current.Resources.ContainsKey ("NavButtonBlueStyle"));
+ Assert.True (Current.Resources.ContainsKey ("NavButtonGrayStyle"));
+ }
+ }
+ }
+} \ No newline at end of file