summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28689.xaml.cs
blob: 41a8280cdbbd8530b97b7fbf4309fb6432e5ae00 (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
using System;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		class Tests
		{
			[TestCase(true)]
			[TestCase(false)]
			public void XArrayInResources (bool useCompiledXaml)
			{
				var layout = new Bz28689 (useCompiledXaml);
				var array = layout.Resources ["stringArray"];
				Assert.That (array, Is.TypeOf<string[]> ());
				var stringarray = (string[])array;
				Assert.AreEqual (2, stringarray.Length);
				Assert.AreEqual ("Test1", stringarray [0]);
				Assert.AreEqual ("Test2", stringarray [1]);
			}
		}
	}
}