From b7acd3c09a36a2dbe1ad83d1f957ccb510187b18 Mon Sep 17 00:00:00 2001 From: InHong Han Date: Mon, 18 Jun 2018 16:54:50 +0900 Subject: [PATCH] [Inputmethodmanager][TCSACR-147] Add a new API to launch IME Change-Id: I4af23fb365abf778fd317532c5c645c1f8faf4a8 --- .../testcase/TSManager.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tct-suite-vs/Tizen.Inputmethodmanager.Tests/testcase/TSManager.cs b/tct-suite-vs/Tizen.Inputmethodmanager.Tests/testcase/TSManager.cs index 8b608c5..9e1e381 100755 --- a/tct-suite-vs/Tizen.Inputmethodmanager.Tests/testcase/TSManager.cs +++ b/tct-suite-vs/Tizen.Inputmethodmanager.Tests/testcase/TSManager.cs @@ -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()); + } + } } } -- 2.7.4