From 3938e98cbb5f11c02e202178a21854bf3f1631db Mon Sep 17 00:00:00 2001 From: Kichan Kwon Date: Tue, 23 Apr 2019 10:46:30 +0900 Subject: [PATCH] [Information][Manual][Non-ACR] Run TvOutConnected only if target device has a screen - It is hard to test without screen Change-Id: Ic1a5416ead3749bb7d862a86a77535a61cc63cdf Signed-off-by: Kichan Kwon --- .../Tizen.Information.Manual.Tests/testcase/TSInformation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a9a74506f..8a081323b 100755 --- a/tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs +++ b/tct-suite-vs/Tizen.Information.Manual.Tests/testcase/TSInformation.cs @@ -555,7 +555,7 @@ namespace Tizen.System.Tests { [Step(1, "Click Run button")] [Step(2, "TvOut: Connect a TVOut connector like micro-USB-to-HDMI to the phone")] public async Task TvOutConnected_CHECK_CONNECTED() { - if (SupportChecker.IsSupported("http://tizen.org/feature/screen.output.hdmi") || SupportChecker.IsSupported("http://tizen.org/feature/screen.output.rca")) + if ((SupportChecker.IsSupported("http://tizen.org/feature/screen.output.hdmi") || SupportChecker.IsSupported("http://tizen.org/feature/screen.output.rca")) && SupportChecker.IsSupported("http://tizen.org/feature/screen")) { Information.SetCallback(TvOut, TvOutConnectedCallback); await ManualTest.WaitForConfirm(); -- 2.34.1