From e5082e949956f37dc069e69e86fff7db5545aadc Mon Sep 17 00:00:00 2001 From: Jeonghyun Yun Date: Thu, 19 Sep 2019 14:48:39 +0900 Subject: [PATCH] [ElmSharp][Non-ACR] Updated TC for more clarify Change-Id: I4050c8bf29108f67d981c04743ab8898e7d64eb9 Signed-off-by: Jeonghyun Yun --- .../Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs | 2 +- .../Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) mode change 100755 => 100644 tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs index 2b43a47d5..ea48a80f9 100644 --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs @@ -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")] diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs old mode 100755 new mode 100644 index a6fcbd503..97afb871f --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSTable.cs @@ -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(); -- 2.34.1