summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2062.xaml.cs
blob: ff7567561eeed6dd17ac6dcc2d5302d3e099521e (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
using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Tests 
		{
			[TestCase (false)]
			[TestCase (true)]
			public void LabelWithoutExplicitPropertyElement (bool useCompiledXaml)
			{
				var layout = new Issue2062 (useCompiledXaml);
				Assert.AreEqual ("text explicitly set to Label.Text", layout.label1.Text);
				Assert.AreEqual ("text implicitly set to Text property of Label", layout.label2.Text);
			}
		}
	}
}