summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs58
1 files changed, 0 insertions, 58 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs
deleted file mode 100644
index 2f15579f..00000000
--- a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-using System;
-using System.Collections.Generic;
-using NUnit.Framework;
-using Xamarin.Forms;
-using Xamarin.Forms.Core.UnitTests;
-
-namespace Xamarin.Forms.Xaml.UnitTests
-{
- public class Bz43733Rd : ResourceDictionary
- {
- public Bz43733Rd()
- {
- Add("SharedText", "Foo");
- }
- }
-
- public partial class Bz43733 : ContentPage
- {
- public Bz43733()
- {
- InitializeComponent();
- }
-
- public Bz43733(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 ThrowOnMissingDictionary(bool useCompiledXaml)
- {
- Application.Current = new MockApplication {
- Resources = new ResourceDictionary {
- MergedWith = typeof(Bz43733Rd),
- }
- };
- var p = new Bz43733(useCompiledXaml);
- Assert.AreEqual("Foo", p.label.Text);
- }
- }
- }
-}