summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs47
1 files changed, 47 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs
new file mode 100644
index 00000000..62e54cd7
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue2578.xaml.cs
@@ -0,0 +1,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);
+ }
+ }
+ }
+} \ No newline at end of file