summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2114.xaml.cs
blob: 66aeac5432100b0110dba2ece0bd4a5fac61324f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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"));
			}
		}
	}
}