summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz31529.xaml.cs
blob: 7edf9ad216ddbfe101b753e67056e5e27e9f76d3 (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
{
	public partial class Bz31529 : ContentPage
	{
		public Bz31529 ()
		{
			InitializeComponent ();
		}
		public Bz31529 (bool useCompiledXaml)
		{
			//this stub will be replaced at compile time
		}

		[TestFixture]
		class Tests
		{
			[TestCase(true)]
			[TestCase(false)]
			public void AllowWhiteSpacesInMarkups (bool useCompiledXaml)
			{
				var layout = new Bz31529 (useCompiledXaml);
				Assert.AreEqual ("Foo", layout.button.CommandParameter);
			}
		}
	}
}