summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Validation/TypeMismatch.xaml.cs
blob: 43a4459c928bbee3b57bf995431ea8cdb70546b7 (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
using System;

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
//			[TestCase (true)]
			public void ThrowsOnMismatchingType (bool useCompiledXaml)
			{
				Assert.Throws (new XamlParseExceptionConstraint (7, 16, m => m.StartsWith ("Cannot assign property", StringComparison.Ordinal)), () => new TypeMismatch (useCompiledXaml));
			}
		}
	}
}