[ElmSharp][Non-ACR] Updated TC for more clarify 18/214218/1
authorJeonghyun Yun <jh0506.yun@samsung.com>
Thu, 19 Sep 2019 05:48:39 +0000 (14:48 +0900)
committerJeonghyun Yun <jh0506.yun@samsung.com>
Thu, 19 Sep 2019 05:49:23 +0000 (14:49 +0900)
Change-Id: I4050c8bf29108f67d981c04743ab8898e7d64eb9
Signed-off-by: Jeonghyun Yun <jh0506.yun@samsung.com>
tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs
tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs [changed mode: 0755->0644]

index 2b43a47..ea48a80 100644 (file)
@@ -1127,7 +1127,7 @@ namespace ElmSharp.Tests
         [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
         [Precondition(1, "NA")]
         [Step(1, "Click Run TC.")]
-        [Step(2, "The return key is disabled when the entry has no text.")]
+        [Step(2, "The return key (TV profile: Done key) is disabled when the entry has no text.")]
         [Step(3, "Input 'abc'. The return key is enabled when the entry has text.")]
         [Step(4, "If it is, click Pass, or click Fail.")]
         [Postcondition(1, "NA")]
old mode 100755 (executable)
new mode 100644 (file)
index a6fcbd5..97afb87
@@ -98,14 +98,20 @@ namespace ElmSharp.Tests
             _table = new Table(_window)
             {
                 PaddingX = 10,
-                PaddingY = 10
+                PaddingY = 10,
+                AlignmentX = -1,
+                AlignmentY = -1,
+                WeightX = 1,
+                WeightY = 1
             };
             _table.Show();
 
             _redButton = new Button(_window)
             {
                 AlignmentX = -1,
+                AlignmentY = -1,
                 WeightX = 1,
+                WeightY = 1,
                 BackgroundColor = Color.Red
             };
             _redButton.Show();
@@ -113,7 +119,9 @@ namespace ElmSharp.Tests
             _yellowButton = new Button(_window)
             {
                 AlignmentX = -1,
+                AlignmentY = -1,
                 WeightX = 1,
+                WeightY = 1,
                 BackgroundColor = Color.Yellow
             };
             _yellowButton.Show();