summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/XArray.xaml.cs
blob: 52327f25941ca38328a987367cc81314bcb94691 (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
using System;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{
	[ContentProperty ("Content")]
	public class MockBindableForArray : View
	{
		public object Content { get; set; }
	}

	public partial class XArray : MockBindableForArray
	{	
		public XArray ()
		{
			InitializeComponent ();
		}

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

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void SupportsXArray (bool useCompiledXaml)
			{
				var layout = new XArray (useCompiledXaml);
				var array = layout.Content;
				Assert.NotNull (array);
				Assert.That (array, Is.TypeOf<string[]> ());
				Assert.AreEqual (2, ((string[])layout.Content).Length);
				Assert.AreEqual ("Hello", ((string[])layout.Content) [0]);
				Assert.AreEqual ("World", ((string[])layout.Content) [1]);
			}
		}
	}
}