From bcba22f7eb78004e7bf2c6f7737f2378d26e91e3 Mon Sep 17 00:00:00 2001 From: Jeonghyun Yun Date: Thu, 25 Oct 2018 18:08:45 +0900 Subject: [PATCH] [ElmSharp][Non-ACR]Fix manual TCT for Index Change-Id: Iaee35976ee18ca8574caaecdd44af1992b3141ed Signed-off-by: Jeonghyun Yun --- tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndex.cs | 3 ++- .../Tizen.ElmSharp.Manual.Tests/testcase/TSIndexItem.cs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndex.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndex.cs index 5e52fec83..b1c53e039 100755 --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndex.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndex.cs @@ -80,9 +80,10 @@ namespace ElmSharp.Tests _testPage.ExecuteTCByPage(index); index.Append(string.Format("{0}", 0)); index.Append(string.Format("{0}", 0)); + index.Update(0); index.Changed += OnChanged; await ManualTest.WaitForConfirm(); index.Changed -= OnChanged; } } -} \ No newline at end of file +} diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndexItem.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndexItem.cs index 95dab3e61..782d27e80 100755 --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndexItem.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSIndexItem.cs @@ -78,9 +78,10 @@ namespace ElmSharp.Tests index.Show(); _testPage.ExecuteTCByPage(index); var indexitem = index.Append(string.Format("{0}", 0)); + index.Update(0); indexitem.Selected += OnSelected; await ManualTest.WaitForConfirm(); indexitem.Selected -= OnSelected; } } -} \ No newline at end of file +} -- 2.34.1