From 4cf7ed80b7496ce34b8047988b83e1ab12597079 Mon Sep 17 00:00:00 2001 From: Wonsik Jung Date: Tue, 3 Aug 2021 20:10:56 +0900 Subject: [PATCH] [NUI][TCSACR-436] Add NUI IME Window testcase It has new NUIApplication's constructor and windowType for IME Change-Id: Ib6bfc81a132fa2f70a963ab6c68459914e6828f4 --- .../Tizen.NUI.Tests/testcase/TSNUIApplication.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs index fe093ad..a1078e4 100755 --- a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs +++ b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSNUIApplication.cs @@ -74,6 +74,22 @@ namespace Tizen.NUI.Tests [Test] [Category("P1")] + [Description("dali NUIApplication constructor test for IME Window type. Check whether object which set WindowType with IME is successfully created or not.")] + [Property("SPEC", "Tizen.NUI.NUIApplication.NUIApplication C")] + [Property("SPEC_URL", "-")] + [Property("CRITERIA", "CONSTR")] + [Property("COVPARAM", "string,WindowMode,WindowType")] + [Property("AUTHOR", "Wonsik Jung, sidein@samsung.com")] + public void NUIApplication_INIT_WITH_STRING_WINDOWMODE_IMEWINDOWTYPE() + { + /* TEST CODE */ + var application = new NUIApplication("stylesheet", NUIApplication.WindowMode.Opaque, WindowType.Ime); + Assert.IsNotNull(application, "NUIApplication Shouldn't null after init"); + Assert.IsInstanceOf(application, "NUIApplication Should return NUIApplication instance."); + } + + [Test] + [Category("P1")] [Description("Test RegisterAssembly. Try to register assembly")] [Property("SPEC", "Tizen.NUI.NUIApplication.RegisterAssembly M")] [Property("SPEC_URL", "-")] -- 2.7.4