[Test]
[Category("P1")]
+ [Description("Check the working of RequestHide method for No Exception")]
+ [Property("SPEC", "Tizen.Uix.InputMethod.InputMethodEditor.RequestHide M")]
+ [Property("SPEC_URL", "-")]
+ [Property("CRITERIA", "MR")]
+ [Property("AUTHOR", "Inhong Han, inhong1.han@samsung.com")]
+ public static void RequestHide_NO_EXCEPTION()
+ {
+ /*
+ * TEST CODE
+ */
+ flag = false;
+ try
+ {
+ Helper.PrintLog(Type.DLogAndlogUtil, "Executing TC: RequestHide_NO_EXCEPTION");
+ InputMethodEditor.RequestHide();
+ flag = true;
+ Helper.PrintLog(Type.DLogAndlogUtil, "Completed TC: RequestHide_NO_EXCEPTION");
+ }
+ catch (Exception e)
+ {
+ Helper.PrintLog(Type.DLogAndlogUtil, "Caught Exception" + e.ToString());
+ Assert.IsTrue(false, "Caught Exception" + e.ToString());
+ }
+ Assert.IsTrue(flag, "Failed test");
+ }
+
+ [Test]
+ [Category("P1")]
[Description("Initialize the BoolAction delegate")]
[Property("SPEC", " Tizen.Uix.InputMethod.InputMethodEditor.BoolAction M")]
[Property("SPEC_URL", "-")]