[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 be22ff9..cc565e9 100755 (executable)
@@ -83,45 +83,6 @@ namespace ElmSharp.Wearable.Tests
 
         [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")]
         [Property("SPEC", "ElmSharp.Wearable.CircleDateTimeSelector.CircleHandle A")]
         [Property("SPEC_URL", "-")]
@@ -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 9f6191b..e593a40 100755 (executable)
@@ -97,45 +97,6 @@ namespace ElmSharp.Wearable.Tests
 
         [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")]
         [Property("SPEC", "ElmSharp.Wearable.CircleSpinner.CircleHandle A")]
         [Property("SPEC_URL", "-")]