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

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void NestedMarkupExtension (bool useCompiledXaml)
			{
				var page = new Issue1415 (useCompiledXaml);
				var label = page.FindByName<Label> ("label");
				Assert.NotNull (label);
				label.BindingContext = "foo";
				Assert.AreEqual ("oof", label.Text);
			}
		}
	}
}