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

using Xamarin.Forms;

using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{
	public class Issue2742BasePage : ContentPage
	{

	}

	public partial class Issue2742 : Issue2742BasePage
	{
		public Issue2742 ()
		{
			InitializeComponent ();
		}

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


		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void ToolBarItemsOnContentPageInheritors (bool useCompiledXaml)
			{
				var layout = new Issue2742 (useCompiledXaml);
				Assert.That (layout.Content, Is.TypeOf<Label> ());
				Assert.AreEqual ("test", ((Label)layout.Content).Text);

				Assert.NotNull (layout.ToolbarItems);
				Assert.AreEqual (2, layout.ToolbarItems.Count);
				Assert.AreEqual ("One", layout.ToolbarItems [0].Name);
			}
		}
	}
}