[NUI][Non-ACR] Add EnableSelection set true at SelectionChanged test. 72/266372/1
authorjoogab.yun <joogab.yun@samsung.com>
Thu, 11 Nov 2021 06:37:57 +0000 (15:37 +0900)
committerjoogab.yun <joogab.yun@samsung.com>
Thu, 11 Nov 2021 06:42:03 +0000 (15:42 +0900)
Change-Id: I48101f028fc86a606877a5dfdbeaf9475a77afe0

tct-suite-vs/Tizen.NUI.Tests/testcase/TSTextEditor.cs
tct-suite-vs/Tizen.NUI.Tests/testcase/TSTextField.cs

index d7b2e1b..3869e12 100755 (executable)
@@ -120,7 +120,7 @@ namespace Tizen.NUI.Tests
             map.Insert("slant", value);
             textEditor.FontStyle = map;
 
-            //This is for MDC-Solis TCT: MCD-Solis has different fonts installed so it needs seperated test case. (There is no condition or definition for specific target) 
+            //This is for MDC-Solis TCT: MCD-Solis has different fonts installed so it needs seperated test case. (There is no condition or definition for specific target)
             if(map.Count() != textEditor.FontStyle.Count())
             {
                 map.Clear();
@@ -1197,6 +1197,7 @@ namespace Tizen.NUI.Tests
         {
             var textEditor = new TextEditor();
             textEditor.Text = "123456789";
+            textEditor.EnableSelection = true;
             Window.Instance.GetDefaultLayer().Add(textEditor);
             bool flag = false;
             EventHandler handler = (obj, e) =>
index 31142dc..ebdc907 100755 (executable)
@@ -207,7 +207,7 @@ namespace Tizen.NUI.Tests
             map.Add("slant", value);
             textField.FontStyle = map;
 
-            //This is for MDC-Solis TCT: MCD-Solis has different fonts installed so it needs seperated test case. (There is no condition or definition for specific target) 
+            //This is for MDC-Solis TCT: MCD-Solis has different fonts installed so it needs seperated test case. (There is no condition or definition for specific target)
             if (map.Count() != textField.FontStyle.Count())
             {
                 map.Clear();
@@ -1239,6 +1239,7 @@ namespace Tizen.NUI.Tests
         {
             var textField = new TextField();
             textField.Text = "123456789";
+            textField.EnableSelection = true;
             Window.Instance.GetDefaultLayer().Add(textField);
             bool flag = false;
             EventHandler handler = (obj, e) =>