summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs
blob: 62e54cd7408105d3a5809a01574e3661c92bb461 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;
using Xamarin.Forms.Core.UnitTests;

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

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

		[TestFixture]
		public class Tests
		{
			[SetUp]
			public void Setup ()
			{
				Device.PlatformServices = new MockPlatformServices ();
			}

			[TestCase (false)]
			[TestCase (true)]
			public void MultipleTriggers (bool useCompiledXaml)
			{
				Issue2578 layout = null;
				Assert.DoesNotThrow (() => layout = new Issue2578 (useCompiledXaml));

				Assert.AreEqual (null, layout.label.Text);
				Assert.AreEqual (Color.Default, layout.label.BackgroundColor);
				Assert.AreEqual (Color.Olive, layout.label.TextColor);
				layout.label.Text = "Foo";
				Assert.AreEqual (Color.Red, layout.label.BackgroundColor);
			}
		}
	}
}