summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz30074.xaml.cs
blob: e1c60feb1b63097efdfce2bc3cc31cc98b155750 (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 Bz30074 : ContentPage
	{
		public Bz30074 ()
		{
			InitializeComponent ();
		}

		public Bz30074 (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 Bz30074 (useCompiledXaml);
				Assert.Null (layout.image.Source);

				layout.BindingContext = new {IsSelected = true};
				Assert.AreEqual ("Add.png", ((FileImageSource)layout.image.Source).File);

				layout.BindingContext = new {IsSelected = false};
				Assert.Null (layout.image.Source);
			}
		}
	}
}