[Inputmethodmanager][TCSACR-147] Add a new API to launch IME 79/181779/2
authorInHong Han <inhong1.han@samsung.com>
Mon, 18 Jun 2018 07:54:50 +0000 (16:54 +0900)
committerInHong Han <inhong1.han@samsung.com>
Tue, 26 Jun 2018 10:10:22 +0000 (10:10 +0000)
Change-Id: I4af23fb365abf778fd317532c5c645c1f8faf4a8

tct-suite-vs/Tizen.Inputmethodmanager.Tests/testcase/TSManager.cs

index 8b608c5..9e1e381 100755 (executable)
@@ -139,6 +139,26 @@ namespace Tizen.Uix.InputMethodManager.Tests
                 Assert.Fail("Got Exception" + e.ToString());
             }
         }
+
+        [Test]
+        [Category("P1")]
+        [Description("Check the working of PrelaunchIME method for No Exception")]
+        [Property("SPEC", " Tizen.Uix.InputMethodManager.Manager.PrelaunchIME M")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "MR")]
+        [Property("AUTHOR", "Inhong Han, inhong1.han@samsung.com")]
+        public static void PrelaunchIME_NoException()
+        {
+            try
+            {
+                /* TEST CODE */
+                Manager.PrelaunchIME();
+            }
+            catch (Exception e)
+            {
+                Assert.Fail("Got Exception" + e.ToString());
+            }
+        }
     }
 }