summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz34037.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Bz34037.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz34037.xaml.cs91
1 files changed, 91 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz34037.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz34037.xaml.cs
new file mode 100644
index 00000000..ee300cb0
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz34037.xaml.cs
@@ -0,0 +1,91 @@
+using System;
+using System.Collections.Generic;
+
+using Xamarin.Forms;
+using NUnit.Framework;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public class Bz34037Converter0 : IValueConverter, IMarkupExtension
+ {
+ public static int Invoked { get; set; }
+ public static object Parameter { get; set; }
+ public object Convert (object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
+ {
+ Invoked++;
+ Parameter = parameter;
+ return true;
+ }
+
+ public object ConvertBack (object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
+ {
+ throw new NotImplementedException ();
+ }
+
+ public object ProvideValue (IServiceProvider serviceProvider)
+ {
+ return new Bz34037Converter0 ();
+ }
+ }
+
+ public class Bz34037Converter1 : IValueConverter, IMarkupExtension
+ {
+ public static int Invoked { get; set; }
+ public static object Parameter { get; set; }
+ public object Convert (object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
+ {
+ Invoked++;
+ Parameter = parameter;
+ return true;
+ }
+
+ public object ConvertBack (object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
+ {
+ throw new NotImplementedException ();
+ }
+
+ public object ProvideValue (IServiceProvider serviceProvider)
+ {
+ return new Bz34037Converter1 ();
+ }
+ }
+
+ public partial class Bz34037 : ContentPage
+ {
+ public Bz34037 ()
+ {
+ InitializeComponent ();
+ }
+
+ public string Property {
+ get { return "FooBar"; }
+ }
+
+ public Bz34037 (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ class Tests
+ {
+ [SetUp]
+ public void Setup ()
+ {
+ Bz34037Converter0.Invoked = 0;
+ Bz34037Converter1.Invoked = 0;
+ }
+
+ [TestCase(true)]
+ [TestCase(false)]
+ public void ConverterParameterOrderDoesNotMatters (bool useCompiledXaml)
+ {
+ var layout = new Bz34037 (useCompiledXaml);
+ Assert.AreEqual (2, Bz34037Converter0.Invoked);
+// Assert.AreEqual (2, Bz34037Converter1.Invoked);
+ Assert.AreEqual (typeof(string), Bz34037Converter0.Parameter);
+// Assert.AreEqual (typeof(string), Bz34037Converter1.Parameter);
+ }
+ }
+ }
+} \ No newline at end of file