From 872079b06e4a29a892aa7c94c69b19f34472d145 Mon Sep 17 00:00:00 2001 From: Kichan Kwon Date: Wed, 19 Sep 2018 17:39:32 +0900 Subject: [PATCH] [Information][Manual][Non-ACR] Skip auto rotation test on Wearable profile Change-Id: I5387549f070908cd0c2eaab3ef7581246201ba74 Signed-off-by: Kichan Kwon --- tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs b/tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs index 80361b1..5900c07 100755 --- a/tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs +++ b/tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs @@ -684,7 +684,7 @@ namespace Tizen.System.Tests { [Step(1, "Click Run button")] [Step(2, "Enable AutoRotation: Home screen -> Drop down menu -> Auto Rotate -> Enable ")] public static async Task AutoRotationEnabled_CHECK_ENABLE() { - if (SupportChecker.IsSupported("http://tizen.org/feature/screen.auto_rotation")) + if (SupportChecker.IsSupported("http://tizen.org/feature/screen.auto_rotation") && !SupportChecker.IsWearable()) { Information.SetCallback(AutoRotation, AutoRotationEnableCallback); await ManualTest.WaitForConfirm(); @@ -710,7 +710,7 @@ namespace Tizen.System.Tests { [Step(1, "Click Run button")] [Step(2, "Disable AutoRotation: Home screen -> Drop down menu -> Auto Rotate -> Disable ")] public static async Task AutoRotationEnabled_CHECK_DISABLE() { - if (SupportChecker.IsSupported("http://tizen.org/feature/screen.auto_rotation")) + if (SupportChecker.IsSupported("http://tizen.org/feature/screen.auto_rotation") && !SupportChecker.IsWearable()) { Information.SetCallback(AutoRotation, AutoRotationDisableCallback); await ManualTest.WaitForConfirm(); -- 2.7.4