summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz37306.xaml.cs
blob: 6e0d39e2f1dd74edd58d857daecfaa46d056f81b (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
using Xamarin.Forms;
using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{
	public partial class Bz37306 : ContentPage
	{
		public Bz37306 ()
		{
			InitializeComponent ();
		}

		public Bz37306 (bool useCompiledXaml)
		{
			//this stub will be replaced at compile time
		}

		[TestFixture]
		class Tests
		{
			[TestCase(true)]
			[TestCase(false)]
			public void xStringInResourcesDictionaries (bool useCompiledXaml)
			{
				var layout = new Bz37306 (useCompiledXaml);
				Assert.AreEqual ("Mobile App", layout.Resources ["AppName"]);
				Assert.AreEqual ("Mobile App", layout.Resources ["ApplicationName"]);
			}
		}
	}
}