summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/CompiledTypeConverter.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/CompiledTypeConverter.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/CompiledTypeConverter.xaml.cs45
1 files changed, 45 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/CompiledTypeConverter.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/CompiledTypeConverter.xaml.cs
new file mode 100644
index 00000000..092d67de
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/CompiledTypeConverter.xaml.cs
@@ -0,0 +1,45 @@
+using System;
+using System.Collections.Generic;
+
+using Xamarin.Forms;
+using NUnit.Framework;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public partial class CompiledTypeConverter : ContentPage
+ {
+ public static readonly BindableProperty RectangleBPProperty =
+ BindableProperty.Create ("RectangleBP", typeof(Rectangle), typeof(CompiledTypeConverter), default(Rectangle));
+
+ public Rectangle RectangleBP {
+ get { return (Rectangle)GetValue (RectangleBPProperty); }
+ set { SetValue (RectangleBPProperty, value); }
+ }
+
+ public Rectangle RectangleP { get; set; }
+
+ public CompiledTypeConverter ()
+ {
+ InitializeComponent ();
+ }
+
+ public CompiledTypeConverter (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ public class Tests
+ {
+ [TestCase (false)]
+ [TestCase (true)]
+ public void CompiledTypeConverterAreInvoked (bool useCompiledXaml)
+ {
+ var p = new CompiledTypeConverter (useCompiledXaml);
+ Assert.AreEqual (new Rectangle (0, 1, 2, 4), p.RectangleP);
+ Assert.AreEqual (new Rectangle (4, 8, 16, 32), p.RectangleBP);
+ Assert.AreEqual (Color.Pink, p.BackgroundColor);
+ }
+ }
+ }
+} \ No newline at end of file