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

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void  AssignBindingMarkupToBindingBase (bool useCompiledXaml)
			{
				var listView = new Issue1306 (useCompiledXaml);

				Assert.NotNull (listView.GroupDisplayBinding);
				Assert.NotNull (listView.GroupShortNameBinding);
				Assert.That (listView.GroupDisplayBinding, Is.TypeOf<Binding> ());
				Assert.That (listView.GroupShortNameBinding, Is.TypeOf<Binding> ());
				Assert.AreEqual ("Key", (listView.GroupDisplayBinding as Binding).Path);
				Assert.AreEqual ("Key", (listView.GroupShortNameBinding as Binding).Path);
			}
		}
	}
}