<script type="text/javascript">
//==== TEST: ApplicationManager_addAppInfoEventListener_exist
-//==== LABEL check if method addAppInfoEventListener exist and can be overriden
+//==== LABEL check if method addAppInfoEventListener exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:addAppInfoEventListener M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method addAppInfoEventListener exist and can be overriden
-//==== EXPECT method addAppInfoEventListener exist and can be overriden
+//==== STEP check if method addAppInfoEventListener exist
+//==== EXPECT method addAppInfoEventListener exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
findSuccess = this_test.step_func(function (appInfos, appControl) {
assert_equals(retVal, undefined, "incorrect returned value");
+ assert_type(appInfos, "array", "incorrect type of the received value");
+ assert_equals(appInfos.length, 2, "incorrect length of the received array");
for (i = 0; i < appInfos.length; i++) {
assert_type(appInfos[i], "object", "type of the found value is not properly");
assert_true("id" in appInfos[i], "no id in returned value");
appControl = {
operation: TCT_APPCONTROL_LAUNCH_APPCONTROL_OPERATION,
uri: TCT_APPCONTROL_LAUNCH_APPCONTROL_URI,
- mime : TCT_APPCONTROL_LAUNCH_APPCONTROL_MIME
+ mime : TCT_APPCONTROL_LAUNCH_APPCONTROL_MIME,
+ category : "/opt",
+ data : [new tizen.ApplicationControlData("key", ["value1", "value2"])]
};
findSuccess = this_test.step_func(function () {
+++ /dev/null
-<!DOCTYPE html>
-
-<!--
-
-Copyright (c) 2013 Samsung Electronics Co., Ltd.
-
-Licensed under the Apache License, Version 2.0 (the License);
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-
-
-Authors:
- Mariusz Polasinski <m.polasinski@samsung.com>
-
-
--->
-
-<html lang="en">
-
-<head>
-<title>ApplicationManager_findAppControl_appControl_missarg</title>
-<meta charset="utf-8">
-<script type="text/javascript" src="../resources/testharness.js"></script>
-<script type="text/javascript" src="../resources/testharnessreport.js"></script>
-</head>
-
-<body>
-<div id="log"></div>
-<script type="text/javascript">
-
-//==== TEST: ApplicationManager_findAppControl_appControl_missarg
-//==== LABEL check findAppControl with missing non-optional appControl argument
-//==== ONLOAD_DELAY 30
-//==== SPEC Tizen Web API:Application:Application:ApplicationManager:findAppControl M
-//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check findAppControl with missing non-optional appControl argument
-//==== EXPECT exceptions must be thrown
-//==== EXECUTION_TYPE auto
-//==== PRIORITY P2
-//==== TEST_CRITERIA MC
-
-setup({timeout: 30000});
-
-var this_test = async_test("ApplicationManager_findAppControl_appControl_missarg", {timeout: 30000});
-this_test.step(function () {
- var findSuccess = this_test.step_func(function () {
- assert_unreached("this function should not be run");
- });
-
- assert_throws({name: "TypeMismatchError"}, function () {
- tizen.application.findAppControl(undefined, findSuccess);
- }, "Method was called without ApplicationControl but exception was not thrown");
-
- this_test.done();
-});
-
-</script>
-</body>
-</html>
<script type="text/javascript">
//==== TEST: ApplicationManager_findAppControl_exist
-//==== LABEL check if method findAppControl exist and can be overriden
+//==== LABEL check if method findAppControl exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:findAppControl M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method findAppControl exist and can be overriden
-//==== EXPECT method findAppControl exist and can be overriden
+//==== STEP check if method findAppControl exist
+//==== EXPECT method findAppControl exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
);
findSuccess = this_test.step_func(function (appInfos, appControl) {
+ assert_type(appInfos, "array", "incorrect type of the received value");
+ assert_equals(appInfos.length, 2, "incorrect length of the received array");
for (i = 0; i < appInfos.length; i++) {
assert_type(appInfos[i], "object", "type of the found value is not properly");
assert_true("id" in appInfos[i], "no id in returned value");
<script type="text/javascript">
//==== TEST: ApplicationManager_getAppCerts_exist
-//==== LABEL check if method getAppCerts exist and can be overriden
+//==== LABEL check if method getAppCerts exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:getAppCerts M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method getAppCerts exist and can be overriden
-//==== EXPECT method getAppCerts exist and can be overriden
+//==== STEP check if method getAppCerts exist
+//==== EXPECT method getAppCerts exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_getAppContext_exist
-//==== LABEL check if method getAppContext exist and can be overriden
+//==== LABEL check if method getAppContext exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:getAppContext M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method fgetAppContext exist and can be overriden
-//==== EXPECT method getAppContext exist and can be overriden
+//==== STEP check if method fgetAppContext exist
+//==== EXPECT method getAppContext exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_getAppInfo_exist
-//==== LABEL check if method getAppInfo exist and can be overriden
+//==== LABEL check if method getAppInfo exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:getAppInfo M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method getAppInfo exist and can be overriden
-//==== EXPECT method getAppInfo exist and can be overriden
+//==== STEP check if method getAppInfo exist
+//==== EXPECT method getAppInfo exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_getAppSharedURI_exist
-//==== LABEL check if method getAppSharedURI exist and can be overriden
+//==== LABEL check if method getAppSharedURI exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:getAppSharedURI M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method getAppSharedURI exist and can be overriden
-//==== EXPECT method getAppSharedURI exist and can be overriden
+//==== STEP check if method getAppSharedURI exist
+//==== EXPECT method getAppSharedURI exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_getAppsInfo_exist
-//==== LABEL check if method getAppsInfo exist and can be overriden
+//==== LABEL check if method getAppsInfo exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:getAppsInfo M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method getAppsInfo exist and can be overriden
-//==== EXPECT method getAppsInfo exist and can be overriden
+//==== STEP check if method getAppsInfo exist
+//==== EXPECT method getAppsInfo exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_getCurrentApplication_exist
-//==== LABEL check if method getCurrentApplication exist and can be overriden
+//==== LABEL check if method getCurrentApplication exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:getCurrentApplication M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method getCurrentApplication exist and can be overriden
-//==== EXPECT method getCurrentApplication exist and can be overriden
+//==== STEP check if method getCurrentApplication exist
+//==== EXPECT method getCurrentApplication exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_kill_exist
-//==== LABEL check if method kill exist and can be overriden
+//==== LABEL check if method kill exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:kill M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method kill exist and can be overriden
-//==== EXPECT method kill exist and can be overriden
+//==== STEP check if method kill exist
+//==== EXPECT method kill exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_launchAppControl_exist
-//==== LABEL check if method launchAppControl exist and can be overriden
+//==== LABEL check if method launchAppControl exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:launchAppControl M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method launchAppControl exist and can be overriden
-//==== EXPECT method launchAppControl exist and can be overriden
+//==== STEP check if method launchAppControl exist
+//==== EXPECT method launchAppControl exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_launch_exist
-//==== LABEL check if method launch exist and can be overriden
+//==== LABEL check if method launch exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:launch M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method launch exist and can be overriden
-//==== EXPECT method launch exist and can be overriden
+//==== STEP check if method launch exist
+//==== EXPECT method launch exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: ApplicationManager_removeAppInfoEventListener_exist
-//==== LABEL check if method removeAppInfoEventListener exist and can be overriden
+//==== LABEL check if method removeAppInfoEventListener exist
//==== SPEC Tizen Web API:Application:Application:ApplicationManager:removeAppInfoEventListener M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method removeAppInfoEventListener exist and can be overriden
-//==== EXPECT method removeAppInfoEventListener exist and can be overriden
+//==== STEP check if method removeAppInfoEventListener exist
+//==== EXPECT method removeAppInfoEventListener exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: Application_exit_exist
-//==== LABEL check if method Application.exit exist and can be overriden
+//==== LABEL check if method Application.exit exist
//==== SPEC Tizen Web API:Application:Application:Application:exit M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method Application.exit exist and can be overriden
-//==== EXPECT method exit exist and can be overriden
+//==== STEP check if method Application.exit exist
+//==== EXPECT method exit exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: Application_getRequestedAppControl_exist
-//==== LABEL check if method Application.getRequestedAppControl exist and can be overriden
+//==== LABEL check if method Application.getRequestedAppControl exist
//==== SPEC Tizen Web API:Application:Application:Application:getRequestedAppControl M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method Application.getRequestedAppControl exist and can be overriden
-//==== EXPECT method getRequestedAppControl exist and can be overriden
+//==== STEP check if method Application.getRequestedAppControl exist
+//==== EXPECT method getRequestedAppControl exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
<script type="text/javascript">
//==== TEST: Application_hide_exist
-//==== LABEL check if method Application.hide exist and can be overriden
+//==== LABEL check if method Application.hide exist
//==== SPEC Tizen Web API:Application:Application:Application:hide M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html
-//==== STEP check if method Application.hide exist and can be overriden
-//==== EXPECT method hide exist and can be overriden
+//==== STEP check if method Application.hide exist
+//==== EXPECT method hide exist
//==== EXECUTION_TYPE auto
//==== PRIORITY P0
//==== TEST_CRITERIA ME
request.replyFailure();
};
+ // check only null because not able to invoke replyFailure() multiple times
tests["RequestedApplicationControl_replyFailure_extra_argument"] = function (request) {
request.replyFailure(null);
};
+++ /dev/null
-/*
-Copyright (c) 2013 Samsung Electronics Co., Ltd.
-
-Licensed under the Apache License, Version 2.0 (the License);
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-Authors:
- Krzysztof Lachacz <k.lachacz@samsung.com>
-
-*/
-
-test(function () {
- var reqAppControl = tizen.application.getCurrentApplication().getRequestedAppControl();
-
- // check only null because not able to invoke replyFailure() multiple times
- reqAppControl.replyFailure(null);
-}, "RequestedApplicationControl_replyFailure_extra_argument");
</spec>
</specs>
</testcase>
- <testcase purpose="check if method findAppControl exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_findAppControl_exist">
+ <testcase purpose="check if method findAppControl exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_findAppControl_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method findAppControl exist and can be overriden</step_desc>
- <expected>method findAppControl exist and can be overriden</expected>
+ <step_desc>check if method findAppControl exist</step_desc>
+ <expected>method findAppControl exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_findAppControl_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method launch exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_launch_exist">
+ <testcase purpose="check if method launch exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_launch_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method launch exist and can be overriden</step_desc>
- <expected>method launch exist and can be overriden</expected>
+ <step_desc>check if method launch exist</step_desc>
+ <expected>method launch exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_launch_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method kill exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_kill_exist">
+ <testcase purpose="check if method kill exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_kill_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method kill exist and can be overriden</step_desc>
- <expected>method kill exist and can be overriden</expected>
+ <step_desc>check if method kill exist</step_desc>
+ <expected>method kill exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_kill_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method launchAppControl exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_launchAppControl_exist">
+ <testcase purpose="check if method launchAppControl exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_launchAppControl_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method launchAppControl exist and can be overriden</step_desc>
- <expected>method launchAppControl exist and can be overriden</expected>
+ <step_desc>check if method launchAppControl exist</step_desc>
+ <expected>method launchAppControl exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_launchAppControl_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check findAppControl with missing non-optional appControl argument" type="compliance" onload_delay="30" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P2" id="ApplicationManager_findAppControl_appControl_missarg">
- <description>
- <steps>
- <step order="1">
- <step_desc>check findAppControl with missing non-optional appControl argument</step_desc>
- <expected>exceptions must be thrown</expected>
- </step>
- </steps>
- <test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_findAppControl_appControl_missarg.html</test_script_entry>
- </description>
- <specs>
- <spec>
- <spec_assertion interface="ApplicationManager" element_type="method" element_name="findAppControl" specification="Application" section="Application" category="Tizen Device API Specifications"/>
- <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/application.html</spec_url>
- <spec_statement>TBD</spec_statement>
- </spec>
- </specs>
- </testcase>
<testcase purpose="check if an exception was thrown when a fake object (ApplicationControl) was passed into findAppControl method" type="compliance" onload_delay="30" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P2" id="ApplicationManager_findAppControl_appControl_invalid_obj">
<description>
<steps>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method getAppContext exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppContext_exist">
+ <testcase purpose="check if method getAppContext exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppContext_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method fgetAppContext exist and can be overriden</step_desc>
- <expected>method getAppContext exist and can be overriden</expected>
+ <step_desc>check if method fgetAppContext exist</step_desc>
+ <expected>method getAppContext exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_getAppContext_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method getAppsInfo exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppsInfo_exist">
+ <testcase purpose="check if method getAppsInfo exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppsInfo_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method getAppsInfo exist and can be overriden</step_desc>
- <expected>method getAppsInfo exist and can be overriden</expected>
+ <step_desc>check if method getAppsInfo exist</step_desc>
+ <expected>method getAppsInfo exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_getAppsInfo_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method getAppCerts exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppCerts_exist">
+ <testcase purpose="check if method getAppCerts exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppCerts_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method getAppCerts exist and can be overriden</step_desc>
- <expected>method getAppCerts exist and can be overriden</expected>
+ <step_desc>check if method getAppCerts exist</step_desc>
+ <expected>method getAppCerts exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_getAppCerts_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method getAppInfo exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppInfo_exist">
+ <testcase purpose="check if method getAppInfo exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppInfo_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method getAppInfo exist and can be overriden</step_desc>
- <expected>method getAppInfo exist and can be overriden</expected>
+ <step_desc>check if method getAppInfo exist</step_desc>
+ <expected>method getAppInfo exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_getAppInfo_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method addAppInfoEventListener exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_addAppInfoEventListener_exist">
+ <testcase purpose="check if method addAppInfoEventListener exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_addAppInfoEventListener_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method addAppInfoEventListener exist and can be overriden</step_desc>
- <expected>method addAppInfoEventListener exist and can be overriden</expected>
+ <step_desc>check if method addAppInfoEventListener exist</step_desc>
+ <expected>method addAppInfoEventListener exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_addAppInfoEventListener_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method getCurrentApplication exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getCurrentApplication_exist">
+ <testcase purpose="check if method getCurrentApplication exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getCurrentApplication_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method getCurrentApplication exist and can be overriden</step_desc>
- <expected>method getCurrentApplication exist and can be overriden</expected>
+ <step_desc>check if method getCurrentApplication exist</step_desc>
+ <expected>method getCurrentApplication exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_getCurrentApplication_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method Application.exit exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="Application_exit_exist">
+ <testcase purpose="check if method Application.exit exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="Application_exit_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method Application.exit exist and can be overriden</step_desc>
- <expected>method exit exist and can be overriden</expected>
+ <step_desc>check if method Application.exit exist</step_desc>
+ <expected>method exit exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/Application_exit_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method Application.hide exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="Application_hide_exist">
+ <testcase purpose="check if method Application.hide exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="Application_hide_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method Application.hide exist and can be overriden</step_desc>
- <expected>method hide exist and can be overriden</expected>
+ <step_desc>check if method Application.hide exist</step_desc>
+ <expected>method hide exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/Application_hide_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method Application.getRequestedAppControl exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="Application_getRequestedAppControl_exist">
+ <testcase purpose="check if method Application.getRequestedAppControl exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="Application_getRequestedAppControl_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method Application.getRequestedAppControl exist and can be overriden</step_desc>
- <expected>method getRequestedAppControl exist and can be overriden</expected>
+ <step_desc>check if method Application.getRequestedAppControl exist</step_desc>
+ <expected>method getRequestedAppControl exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/Application_getRequestedAppControl_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method removeAppInfoEventListener exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_removeAppInfoEventListener_exist">
+ <testcase purpose="check if method removeAppInfoEventListener exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_removeAppInfoEventListener_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method removeAppInfoEventListener exist and can be overriden</step_desc>
- <expected>method removeAppInfoEventListener exist and can be overriden</expected>
+ <step_desc>check if method removeAppInfoEventListener exist</step_desc>
+ <expected>method removeAppInfoEventListener exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_removeAppInfoEventListener_exist.html</test_script_entry>
</spec>
</specs>
</testcase>
- <testcase purpose="check if method getAppSharedURI exist and can be overriden" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppSharedURI_exist">
+ <testcase purpose="check if method getAppSharedURI exist" type="compliance" status="approved" component="TizenAPI/Application/Application" execution_type="auto" priority="P0" id="ApplicationManager_getAppSharedURI_exist">
<description>
<steps>
<step order="1">
- <step_desc>check if method getAppSharedURI exist and can be overriden</step_desc>
- <expected>method getAppSharedURI exist and can be overriden</expected>
+ <step_desc>check if method getAppSharedURI exist</step_desc>
+ <expected>method getAppSharedURI exist</expected>
</step>
</steps>
<test_script_entry>/opt/tct-application-tizen-tests/application/ApplicationManager_getAppSharedURI_exist.html</test_script_entry>