summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/McIgnorable.xaml.cs
blob: f1c4aa6f05ce5fa3ae127907051c22d8025665af (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
using NUnit.Framework;

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

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


		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void DoesNotThrow (bool useCompiledXaml)
			{
				var layout = new McIgnorable (useCompiledXaml);
			}
		}
	}
}