[ElmsharpWearable][Non-ACR]Remove test for notsupported API 91/200791/2
authorJeongkyun <jk.pu@samsung.com>
Mon, 4 Mar 2019 08:21:04 +0000 (17:21 +0900)
committerJeonghyun Yun <jh0506.yun@samsung.com>
Tue, 6 Aug 2019 09:42:24 +0000 (18:42 +0900)
Marker is not supported latest emulator and watch devices(Tizen 4.0 and
Tizen 5.5). Therefore Marker related APIs were deprecated.
(https://github.com/Samsung/TizenFX/pull/734 )

related jira issue : http://suprem.sec.samsung.net/jira/browse/TNEXT-18074

Change-Id: If9047eb54ee8d4fe9864ef4b63b941c7aca9954a

tct-suite-vs/Tizen.ElmSharpWearable.Tests/testcase/TSCircleDatetimeSelector.cs
tct-suite-vs/Tizen.ElmSharpWearable.Tests/testcase/TSCircleSpinner.cs

index be22ff9907bec8b93edf75157805b2e4d79ab43d..cc565e9571cacab8d7a68b2a3331fa7298328a6a 100755 (executable)
@@ -81,45 +81,6 @@ namespace ElmSharp.Wearable.Tests
             Assert.AreEqual(false, _circleDatetimeSelector.Disabled, "Retrieved Disabled should be equal to set value");
         }
 
-        [Test]
-        [Category("P1")]
-        [Description("Check whether MarkerColor is readable and writable")]
-        [Property("SPEC", "ElmSharp.Wearable.CircleDateTimeSelector.MarkerColor A")]
-        [Property("SPEC_URL", "-")]
-        [Property("CRITERIA", "PRW")]
-        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
-        public void MarkerColor_PROPERTY_SET_GET()
-        {
-            _circleDatetimeSelector.MarkerColor = Color.Blue;
-            Assert.AreEqual(Color.Blue, _circleDatetimeSelector.MarkerColor, "Retrieved MarkerColor should be equal to set value");
-        }
-
-        [Test]
-        [Category("P1")]
-        [Description("Check whether MarkerLineWidth is readable and writable")]
-        [Property("SPEC", "ElmSharp.Wearable.CircleDateTimeSelector.MarkerLineWidth A")]
-        [Property("SPEC_URL", "-")]
-        [Property("CRITERIA", "PRW")]
-        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
-        public void MarkerLineWidth_PROPERTY_SET_GET()
-        {
-            _circleDatetimeSelector.MarkerLineWidth = 1;
-            Assert.AreEqual(1, _circleDatetimeSelector.MarkerLineWidth, "Retrieved MarkerLineWidth should be equal to set value");
-        }
-
-        [Test]
-        [Category("P1")]
-        [Description("Check whether MarkerRadius is readable and writable")]
-        [Property("SPEC", "ElmSharp.Wearable.CircleDateTimeSelector.MarkerRadius A")]
-        [Property("SPEC_URL", "-")]
-        [Property("CRITERIA", "PRW")]
-        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
-        public void MarkerRadius_PROPERTY_SET_GET()
-        {
-            _circleDatetimeSelector.MarkerRadius = 1.0;
-            Assert.AreEqual(1.0, _circleDatetimeSelector.MarkerRadius, "Retrieved MarkerRadius should be equal to set value");
-        }
-
         [Test]
         [Category("P1")]
         [Description("Check whether getting CircleHandle is not null")]
@@ -159,4 +120,4 @@ namespace ElmSharp.Wearable.Tests
             Assert.AreEqual(_circleSurface, _circleDatetimeSelector.CircleSurface, "Retrieved CircleSurface should be equal to set value");
         }
     }
-}
\ No newline at end of file
+}
index 9f6191bc8ff98ec53cd4a836d1e1353c6f62cf72..e593a40363070aaed3361106f7553c7f0a662e19 100755 (executable)
@@ -95,45 +95,6 @@ namespace ElmSharp.Wearable.Tests
             Assert.AreEqual(false, _circleSpinner.Disabled, "Retrieved Disabled should be equal to set value");
         }
 
-        [Test]
-        [Category("P1")]
-        [Description("Check whether MarkerLineWidth is readable and writable")]
-        [Property("SPEC", "ElmSharp.Wearable.CircleSpinner.MarkerLineWidth A")]
-        [Property("SPEC_URL", "-")]
-        [Property("CRITERIA", "PRW")]
-        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
-        public void MarkerLineWidth_PROPERTY_SET_GET()
-        {
-            _circleSpinner.MarkerLineWidth = 1;
-            Assert.AreEqual(1, _circleSpinner.MarkerLineWidth, "Retrieved MarkerLineWidth should be equal to set value");
-        }
-
-        [Test]
-        [Category("P1")]
-        [Description("Check whether MarkerColor is readable and writable")]
-        [Property("SPEC", "ElmSharp.Wearable.CircleSpinner.MarkerColor A")]
-        [Property("SPEC_URL", "-")]
-        [Property("CRITERIA", "PRW")]
-        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
-        public void MarkerColor_PROPERTY_SET_GET()
-        {
-            _circleSpinner.MarkerColor = Color.Black;
-            Assert.AreEqual(Color.Black, _circleSpinner.MarkerColor, "Retrieved MarkerColor should be equal to set value");
-        }
-
-        [Test]
-        [Category("P1")]
-        [Description("Check whether MarkerRadius is readable and writable")]
-        [Property("SPEC", "ElmSharp.Wearable.CircleSpinner.MarkerRadius A")]
-        [Property("SPEC_URL", "-")]
-        [Property("CRITERIA", "PRW")]
-        [Property("AUTHOR", "Qian Sui, qian.sui@samsung.com")]
-        public void MarkerRadius_PROPERTY_SET_GET()
-        {
-            _circleSpinner.MarkerRadius = 1.0;
-            Assert.AreEqual(1.0, _circleSpinner.MarkerRadius, "Retrieved MarkerRadius should be equal to set value");
-        }
-
         [Test]
         [Category("P1")]
         [Description("Check whether getting CircleHandle is not null")]