summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue1199.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Issue1199.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Issue1199.xaml.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Issue1199.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue1199.xaml.cs
new file mode 100644
index 00000000..18ae8731
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue1199.xaml.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+
+using Xamarin.Forms;
+using NUnit.Framework;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public partial class Issue1199 : ContentPage
+ {
+ public Issue1199 ()
+ {
+ InitializeComponent ();
+ }
+
+ public Issue1199 (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ class Tests
+ {
+ [TestCase(true)]
+ [TestCase(false)]
+ public void AllowCreationOfTypesFromString (bool useCompiledXaml)
+ {
+ var layout = new Issue1199 (useCompiledXaml);
+ var res = (Color)layout.Resources ["AlmostSilver"];
+
+ Assert.AreEqual (Color.FromHex ("#FFCCCCCC"), res);
+ }
+ }
+ }
+} \ No newline at end of file