From: Kichan Kwon Date: Wed, 19 Sep 2018 08:39:32 +0000 (+0900) Subject: [Information][Manual][Non-ACR] Skip auto rotation test on Wearable profile X-Git-Tag: tct5.0_m2~57^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=872079b06e4a29a892aa7c94c69b19f34472d145;p=test%2Ftct%2Fcsharp%2Fapi.git [Information][Manual][Non-ACR] Skip auto rotation test on Wearable profile Change-Id: I5387549f070908cd0c2eaab3ef7581246201ba74 Signed-off-by: Kichan Kwon --- 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();