summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs
blob: ca5b7cbdfc67e3d684243fd2168c7cee73bfbc12 (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
using System;
using System.Collections.Generic;
using NUnit.Framework;
using Xamarin.Forms;

namespace Xamarin.Forms.Xaml.UnitTests
{
	[XamlCompilation (XamlCompilationOptions.Skip)]
	public partial class IsCompiledSkip : ContentPage
	{
		public IsCompiledSkip ()
		{
			InitializeComponent ();
		}

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

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void IsCompiled (bool useCompiledXaml)
			{
				var layout = new IsCompiledDefault (useCompiledXaml);
				Assert.AreEqual (false, typeof (IsCompiledSkip).IsCompiled ());
			}
		}
	}
}