[ElmSharp][Non-ACR] Add RenderOperation TC 14/179914/1
authorsung-su.kim <sung-su.kim@samsung.com>
Wed, 23 May 2018 09:34:35 +0000 (18:34 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Wed, 23 May 2018 09:36:30 +0000 (18:36 +0900)
Change-Id: I34039fc5487788382e1582be7ab1b875797d6bef

tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSEvasObject.cs

index ff3b92e..8b73b0f 100755 (executable)
@@ -1,4 +1,4 @@
-/*
+/*
  *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
@@ -991,5 +991,18 @@ namespace ElmSharp.Tests
         {
             Assert.AreNotEqual(IntPtr.Zero, _evasObject.RealHandle, "The getting RealHandle should not be null.");
         }
+
+        [Test]
+        [Category("P1")]
+        [Description("Check whether get value of RenderOperation are identical with the set value or not")]
+        [Property("SPEC", "ElmSharp.EvasObject.RenderOperation A")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "PRW")]
+        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
+        public void RenderOperation_PROPERTY_SET_GET()
+        {
+            _evasObject.RenderOperation += 2;
+            Assert.AreNotEqual(RenderOp.Blend, _evasObject.RenderOperation, "The RenderOperation value should be not equal.");
+        }
     }
 }