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

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		class Tests
		{
			[TestCase(true)]
			[TestCase(false)]
			public void XReferenceFindObjectsInParentNamescopes (bool useCompiledXaml)
			{
				var layout = new Bz30684 (useCompiledXaml);
				var cell = (TextCell)layout.listView.TemplatedItems.GetOrCreateContent (0, null);
				Assert.AreEqual ("Foo", cell.Text);
			}
		}
	}
}