diff options
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Bz30684.xaml.cs')
-rw-r--r-- | Xamarin.Forms.Xaml.UnitTests/Issues/Bz30684.xaml.cs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz30684.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz30684.xaml.cs new file mode 100644 index 00000000..2b0ca827 --- /dev/null +++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz30684.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 Bz30684 : ContentPage + { + public Bz30684 () + { + InitializeComponent (); + } + + public Bz30684 (bool useCompiledXaml) + { + //this stub will be replaced at compile time + } + + [TestFixture] + class Tests + { + [TestCase(true)] + [TestCase(false)] + public void XReferenceFindObjectsInParentNamescopes (bool useCompiledXaml) + { + var layout = new Bz30684 (useCompiledXaml); + var cell = (TextCell)layout.listView.TemplatedItems.GetOrCreateContent (0, null); + Assert.AreEqual ("Foo", cell.Text); + } + } + } +}
\ No newline at end of file |