From 0fa667e186dbfba0d503094b37f124cab8b77f7c Mon Sep 17 00:00:00 2001 From: "E.Z. Hart" Date: Tue, 14 Jun 2016 04:16:48 -0600 Subject: # This is a combination of 5 commits. (#221) # The first commit's message is: Removing CI-specific script from main repo # This is the 2nd commit message: Removing build projects # This is the 3rd commit message: Add some error reporting around TestFixtureSetup # This is the 4th commit message: Force load referenced assemblies to prevent missing registrations # This is the 5th commit message: Revert failed fix for GetAssemblies --- Xamarin.Forms.Core.iOS.UITests/BaseTestFixture.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'Xamarin.Forms.Core.iOS.UITests') diff --git a/Xamarin.Forms.Core.iOS.UITests/BaseTestFixture.cs b/Xamarin.Forms.Core.iOS.UITests/BaseTestFixture.cs index 66d19ee0..c60ef35c 100644 --- a/Xamarin.Forms.Core.iOS.UITests/BaseTestFixture.cs +++ b/Xamarin.Forms.Core.iOS.UITests/BaseTestFixture.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -32,8 +33,17 @@ namespace Xamarin.Forms.Core.UITests #pragma warning restore 618 protected virtual void FixtureSetup () { - if (ShouldResetPerFixture) { - RelaunchApp (); + try + { + if (ShouldResetPerFixture) + { + RelaunchApp(); + } + } + catch (Exception ex) + { + Debug.WriteLine(ex); + throw; } } -- cgit v1.2.3