From: Joonghyun Cho Date: Thu, 3 May 2018 14:03:58 +0000 (+0900) Subject: [XamarinForms][Non-ACR] Fix TCT to run on proper profile X-Git-Tag: public_m1_final~64^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cebd5dbb4e76d926dd101da480be4e5a48aedae;p=test%2Ftct%2Fcsharp%2Fapi.git [XamarinForms][Non-ACR] Fix TCT to run on proper profile - 'IsPresentedChanged_UIBH' is the test about raising IsPresentedChanged event is called when the user swipe the left of the screen to right. - On this case on TV, the default mode is not popover, also there is no way to swipe on TV. Change-Id: I4da1394130957d3a10c137a854f0ce7ffbd5c17b --- diff --git a/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMasterDetailPage.cs b/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMasterDetailPage.cs old mode 100755 new mode 100644 index cfa26a7..bdd0e74 --- a/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMasterDetailPage.cs +++ b/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMasterDetailPage.cs @@ -556,6 +556,12 @@ namespace Xamarin.Forms.Core.UnitTests [Postcondition(1, "NA")] public async Task IsPresentedChanged_UIBH() { + if (Device.Idiom == TargetIdiom.TV) + { + _testPage.UnlockUIButton(); + Assert.Pass("Not Supported"); + } + /* TEST CODE */ CustomMasterDetailPage masterPage = new CustomMasterDetailPage(); CreateMasterPage(masterPage);