[Information][NON-ACR] change feature key 17/250517/1
authorYunmi Ha <yunmi.ha@samsung.com>
Tue, 29 Dec 2020 02:11:51 +0000 (11:11 +0900)
committerYunmi Ha <yunmi.ha@samsung.com>
Tue, 29 Dec 2020 02:11:51 +0000 (11:11 +0900)
- There was some mistake in using the feature key.
Change to the correct key to confirm support.

Change-Id: I6e88b158c00d5c1e517e8c64d25344cd83d7e8df
Signed-off-by: Yunmi Ha <yunmi.ha@samsung.com>
tct-suite-vs/Tizen.Information.Tests/testcase/TSInformation.cs

index 5d25aba..f83ee7f 100755 (executable)
@@ -67,21 +67,21 @@ namespace Tizen.System.Tests {
                 Assert.IsTrue(isError, string.Format("TryGetValue return false for valid bool key: bluetooth"));\r
             }
 
-            Information.TryGetValue<bool>("http://tizen.org/runtimefeature/packetdata", out supported);
+            Information.TryGetValue<bool>("http://tizen.org/feature/network.telephony", out supported);
             if (supported)
             {
                 isError = Information.TryGetValue<bool>("http://tizen.org/runtimefeature/packetdata", out keyValueBool);
                 Assert.IsTrue(isError, string.Format("TryGetValue return false for valid bool key: packetdata"));
             }
 
-            Information.TryGetValue<bool>("http://tizen.org/runtimefeature/dataroaming", out supported);
+            Information.TryGetValue<bool>("http://tizen.org/feature/network.telephony", out supported);
             if (supported)
             {
                 isError = Information.TryGetValue<bool>("http://tizen.org/runtimefeature/dataroaming", out keyValueBool);
                 Assert.IsTrue(isError, string.Format("TryGetValue return false for valid bool key: dataroaming"));
             }
 
-            Information.TryGetValue<bool>("http://tizen.org/runtimefeature/vibration", out supported);
+            Information.TryGetValue<bool>("http://tizen.org/feature/feedback.vibration", out supported);
             if (supported)
             {
                 isError = Information.TryGetValue<bool>("http://tizen.org/runtimefeature/vibration", out keyValueBool);
@@ -101,7 +101,10 @@ namespace Tizen.System.Tests {
                 Assert.IsTrue(isError, string.Format("TryGetValue return false for valid bool key: charger"));
             }
 
-            Information.TryGetValue<bool>("http://tizen.org/runtimefeature/tvout", out supported);
+            Information.TryGetValue<bool>("http://tizen.org/feature/screen.output.hdmi", out supported);
+            if (!supported)
+                Information.TryGetValue<bool>("http://tizen.org/feature/screen.output.rca", out supported);
+
             if (supported)
             {
                 isError = Information.TryGetValue<bool>("http://tizen.org/runtimefeature/tvout", out keyValueBool);