summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28719.xaml.cs
blob: 5cd1f9cb37037ad9f68fbbdd0870712287443308 (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
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;

using Xamarin.Forms;
using NUnit.Framework;

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

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

		[TestFixture]
		class Tests
		{
			[TestCase(true)]
			[TestCase(false)]
			public void DataTriggerInTemplates (bool useCompiledXaml)
			{
				var layout = new Bz28719 (useCompiledXaml);
				var template = layout.listView.ItemTemplate;
				Assert.NotNull (template);
				var cell0 = template.CreateContent () as ViewCell;
				Assert.NotNull (cell0);
				var image0 = cell0.View as Image;
				Assert.NotNull (image0);

				cell0.BindingContext = new {IsSelected = true};
				Assert.AreEqual ("Remove.png", (image0.Source as FileImageSource).File);

				cell0.BindingContext = new {IsSelected = false};
				Assert.AreEqual ("Add.png", (image0.Source as FileImageSource).File);

				var cell1 = template.CreateContent () as ViewCell;
				Assert.NotNull (cell1);
				var image1 = cell1.View as Image;
				Assert.NotNull (image1);

				cell1.BindingContext = new {IsSelected = true};
				Assert.AreEqual ("Remove.png", (image1.Source as FileImageSource).File);

				cell1.BindingContext = new {IsSelected = false};
				Assert.AreEqual ("Add.png", (image1.Source as FileImageSource).File);
			}
		}
	}
}