[XamarinForms][Non-ACR] Fix TCT to run on proper profile 80/177780/1
authorJoonghyun Cho <jh5.cho@samsung.com>
Thu, 3 May 2018 14:03:58 +0000 (23:03 +0900)
committerJoonghyun Cho <jh5.cho@samsung.com>
Thu, 3 May 2018 14:13:26 +0000 (23:13 +0900)
  - '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

tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMasterDetailPage.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index cfa26a7..bdd0e74
@@ -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);