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

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Tests
		{
			[TestCase(false)]
			[TestCase(true)]
			public void MultiPageAsContentPropertyAttribute (bool useCompiledXaml)
			{
				var page = new Issue1213 (useCompiledXaml);
				Assert.AreEqual (2, page.Children.Count);
			}
		}
	}
}