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

using Xamarin.Forms;
using NUnit.Framework;

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

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

		[TestFixture]
		class Tests
		{
			[TestCase(true), TestCase(false)]
			public void AllowCtorArgsForValueTypes (bool useCompiledXaml)
			{
				var page = new Unreported003 (useCompiledXaml);
			}
		}
	}
}