[Xamarin.Forms][Non-ACR]add more step description of slider Min/Max Property 54/188954/1
authorJeongkyun <jk.pu@samsung.com>
Wed, 12 Sep 2018 04:31:57 +0000 (13:31 +0900)
committerJeongkyun <jk.pu@samsung.com>
Wed, 12 Sep 2018 04:39:45 +0000 (13:39 +0900)
- add more description of step for slider Min/Max property.
- previous step description is ambiguous. some tester thinks min/max is changed to second slider value.

Change-Id: Ic7a28489c2a23a87596a8eb03ab1476985a6b5c8
Signed-off-by: Jeongkyun <jk.pu@samsung.com>
tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSSlider.cs

index 05a4311..0beb1f9 100755 (executable)
@@ -84,7 +84,7 @@ namespace Xamarin.Forms.Core.UnitTests
         {
             _label2.IsVisible = true;
             var val1 = (int)_slider1.Minimum;
-            _label2.Text = "Cahnged Min Value: " + val1.ToString();
+            _label2.Text = "Changed Min Value: " + val1.ToString();
             var val = (int)_slider1.Value;
             _label1.Text = "Slider Value: " + val.ToString();
         }
@@ -395,7 +395,8 @@ namespace Xamarin.Forms.Core.UnitTests
         [Property("AUTHOR", "Razin Farhan Hussain, razin.fh@samsung.com")]
         [Precondition(1, "NA")]
         [Step(1, "Click run TC")]
-        [Step(2, "Check if dragging slider change the  Max value of slider after binding with second slider.")]
+        [Step(2, "Check if first slider change the  Max value of slider after binding with second slider.")]
+        [Step(3, "Check if first slider Max value change from 40 to 10 after binding with second slider's Max value. Max value of first slider doesn't change corresponding to second slider value property")]
         [Postcondition(1, "NA")]
         public static async Task MaximumProperty_UIBH()
         {
@@ -448,7 +449,8 @@ namespace Xamarin.Forms.Core.UnitTests
         [Property("AUTHOR", "Razin Farhan Hussain, razin.fh@samsung.com")]
         [Precondition(1, "NA")]
         [Step(1, "Click run TC")]
-        [Step(2, "Check if dragging slider change the  Min value of slider after binding with second slider.")]
+        [Step(2, "Check if first slider change the  Min value of slider after binding with second slider.")]
+        [Step(3, "Check if first slider Min value change from 0 to 3 after binding with second slider's Min value. Min value of first slider doesn't change corresponding to second slider value property")]
         [Postcondition(1, "NA")]
         public static async Task MinimumProperty_UIBH()
         {