[ElmSharp][Non-ACR] Fixed wrong TC 12/176012/2
authorRinaYou <rina6350.you@samsung.com>
Mon, 16 Apr 2018 06:19:56 +0000 (15:19 +0900)
committerRinaYou <rina6350.you@samsung.com>
Mon, 16 Apr 2018 09:38:10 +0000 (18:38 +0900)
Change-Id: If604d3b45b7ed471d108d1bcef9cd4635eb43340
Signed-off-by: Rina You <rina6350.you@samsung.com>
tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSLayout.cs

index 703528b..f90867e 100755 (executable)
@@ -401,7 +401,7 @@ namespace ElmSharp.Tests
                 DefaultBackButtonEnabled = true
             };
             var mark = _layout.BoxRemove("elm.text", naviFrameTemp);
-            Assert.AreEqual(false, "BoxRemove method return " + mark);
+            Assert.AreEqual(false, mark, "BoxRemove method should return false");
             naviFrameTemp = null;
         }
 
@@ -415,7 +415,7 @@ namespace ElmSharp.Tests
         public void BoxRemoveAll_CHECK()
         {
             var mark = _layout.BoxRemoveAll("elm.text", true);
-            Assert.AreEqual(false, "BoxRemoveAll method return " + mark);
+            Assert.AreEqual(false, mark, "BoxRemoveAll method should return false");
         }
 
         [Test]