[ElmSharp][Non-ACR] Updated datetime TC due to wearable product datetime limitation 87/231187/1
authorJeonghyun Yun <jh0506.yun@samsung.com>
Mon, 20 Apr 2020 02:15:27 +0000 (11:15 +0900)
committerJeonghyun Yun <jh0506.yun@samsung.com>
Mon, 20 Apr 2020 02:20:20 +0000 (02:20 +0000)
Change-Id: I535227cd6bdce1aae68b36788062f64ed0eb3bc4
Signed-off-by: Jeonghyun Yun <jh0506.yun@samsung.com>
tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSDateTimeSelector.cs

index c2ffa2d..72d3521 100755 (executable)
@@ -180,7 +180,7 @@ namespace ElmSharp.Tests {
         [Property("AUTHOR", "Wenfeng Ge, wenfeng.ge@samsung.com")]
         public void MaximumDateTime_PROPERTY_SET_GET()
         {
-            DateTime Date = new DateTime(9999, 11, 11);
+            DateTime Date = new DateTime(2035, 11, 11);
             _dateTimeSelector.MaximumDateTime = Date;
             Assert.AreEqual(Date, _dateTimeSelector.MaximumDateTime, "MaximumDateTime doesn't set and get successfully.");
         }
@@ -194,7 +194,7 @@ namespace ElmSharp.Tests {
         [Property("AUTHOR", "Wenfeng Ge, wenfeng.ge@samsung.com")]
         public void MinimumDateTime_PROPERTY_SET_GET()
         {
-            DateTime Date = new DateTime(1000, 11, 11);
+            DateTime Date = new DateTime(1988, 11, 11);
             _dateTimeSelector.MinimumDateTime = Date;
             Assert.AreEqual(Date, _dateTimeSelector.MinimumDateTime, "MinimumDateTime doesn't set and get successfully.");
         }