[ElmSharp][Non-ACR] Fixed the bug & Updated TC Description 09/216709/1
authorJeonghyun Yun <jh0506.yun@samsung.com>
Thu, 31 Oct 2019 03:55:19 +0000 (12:55 +0900)
committerJeonghyun Yun <jh0506.yun@samsung.com>
Thu, 31 Oct 2019 03:56:19 +0000 (12:56 +0900)
Change-Id: I8f4a55feb8ba1690e23073e68a2c4333e7ecee99
Signed-off-by: Jeonghyun Yun <jh0506.yun@samsung.com>
tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEvasObject.cs [changed mode: 0755->0644]
tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSList.cs
tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSNaviframe.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 170d882..b8eec81
@@ -172,6 +172,7 @@ namespace ElmSharp.Tests
 
         private void ToMove(object sender, EventArgs e)
         {
+            _evasObject.RenderPost += OnPost;
             _evasObject.Move(2, 2);
         }
 
@@ -334,7 +335,6 @@ namespace ElmSharp.Tests
         public async Task RenderPost_EVENT()
         {
             CreateResultButton("Test RenderPost event");
-            _evasObject.RenderPost += OnPost;
             _button.Clicked += ToMove;
             // Waits for user confirmation.
             await ManualTest.WaitForConfirm();
index 12fc646f30d89e2088cfbbcf725768b8a909a053..c14ed7ac099dfe3778b118ba281aeaa2d421dd70 100755 (executable)
@@ -545,7 +545,7 @@ namespace ElmSharp.Tests
                 _list.Append("Item" + i.ToString());
             }
             _list.BackgroundColor = Color.Blue;
-            _list.ItemSelected += ItemEventConfirm;
+            _list.ItemUnselected += ItemEventConfirm;
             _list.Update();
             _list.Show();
 
@@ -553,7 +553,7 @@ namespace ElmSharp.Tests
 
             await ManualTest.WaitForConfirm();
 
-            _list.ItemSelected -= ItemEventConfirm;
+            _list.ItemUnselected -= ItemEventConfirm;
         }
     }
-}
\ No newline at end of file
+}
old mode 100755 (executable)
new mode 100644 (file)
index e31a28e..aa43e81
@@ -103,8 +103,7 @@ namespace ElmSharp.Tests
         [Precondition(1, "NA")]
         [Step(1, "Click run button")]
         [Step(2, "Click push button")]
-        [Step(3, "Click back button")]
-        [Step(4, "The test result(pass) will show")]
+        [Step(3, "The test result(pass) will show")]
         [Postcondition(1, "NA")]
         public async Task AnimationFinished_Check()
         {
@@ -141,7 +140,7 @@ namespace ElmSharp.Tests
             _testPage.ExecuteTC(navi);
             await ManualTest.WaitForConfirm();
             navi.AnimationFinished -= (s, e) => { };
-            navi.Hide();
+            navi.Unrealize();
             navi = null;
             _btn = null;
             rect1 = null;