summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Validation/StaticExtensionException.xaml.cs
blob: cb8b22b4ad9a597b79c7844647dd15c41cfa6d34 (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 Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Issue2115
		{
			[TestCase (false)]
			public void xStaticThrowsMeaningfullException (bool useCompiledXaml)
			{
				Assert.Throws (new XamlParseExceptionConstraint (6, 34), () => new StaticExtensionException (useCompiledXaml));
			}
		}
	}
}