summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml.cs48
1 files changed, 0 insertions, 48 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml.cs
deleted file mode 100644
index faabad6d..00000000
--- a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz44213.xaml.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-using NUnit.Framework;
-using Xamarin.Forms.Core.UnitTests;
-
-namespace Xamarin.Forms.Xaml.UnitTests
-{
- public partial class Bz44213 : ContentPage
- {
- public Bz44213()
- {
- InitializeComponent();
- }
-
- public Bz44213(bool useCompiledXaml)
- {
- //this stub will be replaced at compile time
- }
-
- [TestFixture]
- class Tests
- {
- [SetUp]
- public void Setup()
- {
- Device.PlatformServices = new MockPlatformServices();
- }
-
- [TearDown]
- public void TearDown()
- {
- Device.PlatformServices = null;
- }
-
- [TestCase(true)]
- [TestCase(false)]
- public void BindingInOnPlatform(bool useCompiledXaml)
- {
- ((MockPlatformServices)Device.PlatformServices).RuntimePlatform = Device.iOS;
- var p = new Bz44213(useCompiledXaml);
- p.BindingContext = new { Foo = "Foo", Bar = "Bar" };
- Assert.AreEqual("Foo", p.label.Text);
- ((MockPlatformServices)Device.PlatformServices).RuntimePlatform = Device.Android;
- p = new Bz44213(useCompiledXaml);
- p.BindingContext = new { Foo = "Foo", Bar = "Bar" };
- Assert.AreEqual("Bar", p.label.Text);
- }
- }
- }
-} \ No newline at end of file