[Application] adjustments and improvements
authorMariusz Polasinski <m.polasinski@samsung.com>
Fri, 16 Aug 2013 10:47:10 +0000 (12:47 +0200)
committerGerrit Code Review <gerrit@gerrit.vlan144.tizendev.org>
Mon, 19 Aug 2013 08:14:54 +0000 (08:14 +0000)
Change-Id: I5d27e53610e471357d81f69a6eb622f32053d3fa

22 files changed:
tct-application-tizen-tests/application/ApplicationManager_addAppInfoEventListener_exist.html
tct-application-tizen-tests/application/ApplicationManager_findAppControl.html
tct-application-tizen-tests/application/ApplicationManager_findAppControl_appControl_invalid_obj.html
tct-application-tizen-tests/application/ApplicationManager_findAppControl_appControl_missarg.html [deleted file]
tct-application-tizen-tests/application/ApplicationManager_findAppControl_exist.html
tct-application-tizen-tests/application/ApplicationManager_findAppControl_with_errorCallback.html
tct-application-tizen-tests/application/ApplicationManager_getAppCerts_exist.html
tct-application-tizen-tests/application/ApplicationManager_getAppContext_exist.html
tct-application-tizen-tests/application/ApplicationManager_getAppInfo_exist.html
tct-application-tizen-tests/application/ApplicationManager_getAppSharedURI_exist.html
tct-application-tizen-tests/application/ApplicationManager_getAppsInfo_exist.html
tct-application-tizen-tests/application/ApplicationManager_getCurrentApplication_exist.html
tct-application-tizen-tests/application/ApplicationManager_kill_exist.html
tct-application-tizen-tests/application/ApplicationManager_launchAppControl_exist.html
tct-application-tizen-tests/application/ApplicationManager_launch_exist.html
tct-application-tizen-tests/application/ApplicationManager_removeAppInfoEventListener_exist.html
tct-application-tizen-tests/application/Application_exit_exist.html
tct-application-tizen-tests/application/Application_getRequestedAppControl_exist.html
tct-application-tizen-tests/application/Application_hide_exist.html
tct-application-tizen-tests/application/support/TCTAppControl/appcontrol_reply_failure.html
tct-application-tizen-tests/application/support/TCTAppControl/tests/RequestedApplicationControl_replyFailure_extra_argument.js [deleted file]
tct-application-tizen-tests/tests.xml

index 9fcd7845105846d0a739adac7c773a0eb197af26..83ce921d8dc3fac3ef7cb5a8bc568bf6615e1f7f 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 9ea55cff867bdb6074a536cc3a4e4b37a28e9018..bbb92ca5201ac454847ecce6893d69f24bf51e21 100644 (file)
@@ -61,6 +61,8 @@ this_test.step(function () {
 
     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");
index 2c4a50a12446492a0e665a87cba64fae230523ca..e9bafb71b87e5ad8fbcec055ec7afc5c02ddff62 100644 (file)
@@ -56,7 +56,9 @@ this_test.step(function () {
     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 () {
diff --git a/tct-application-tizen-tests/application/ApplicationManager_findAppControl_appControl_missarg.html b/tct-application-tizen-tests/application/ApplicationManager_findAppControl_appControl_missarg.html
deleted file mode 100644 (file)
index e43fe58..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<!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>
index d0c1b0cb9977a17934d0e2d8588fa08fdf9fb480..a2d3d1197993192702a6042d45b4df2e1a56e3d7 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 99f0779333bcbf4cb0c5485b504ded8d98139e31..a4171c1bca41612375d2917457316b9540d739a8 100644 (file)
@@ -61,6 +61,8 @@ this_test.step(function () {
     );
 
     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");
index ff4994654974a9e9f80db987c421ac391f60329f..e4c703c101193e01e15b487bad45d8f99cbc0bd4 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index e1deeb6e37fa1fcdc098acd0da5e6636aff0b154..bd38090362653226571476fa90fb6236aeb05037 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 1bbcb215718b0eae83c8c77e6745ac612dd26299..c07307bf0d211af62bbedc2a76e92766548eb33f 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index e3ec8f36e70271ca67b399182f20b648d60b92c9..b2bcc19621368e9508598ddfd49d828c8570180b 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index e5a241e507e17b5a8718922c48944491eeee9aff..442ca77fa9a4eb3ae2497d4c496172adebf2657d 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index dec86f0b92bb31bd6b0ba0b643c14f011a3a63aa..53c4e32f59e6b293bc4a8e4552008688693106c6 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 82101d6fc33dba45002404d47749c910ce9c0d0a..5417c0d203e7194953043ed6c04cefb81efbed25 100644 (file)
@@ -38,11 +38,11 @@ Authors:
 <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
index 54bbe117e8ef37dbdfc55830416fa9089469a70d..ba248a19d7ea72869cd9060bac36bb464e5c8e6d 100644 (file)
@@ -38,11 +38,11 @@ Authors:
 <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
index 03825e629934edd370bdfe66ba1fc20dffa4fcf9..6cb5a33dc9b1566fd9db9e1d8a1462e3b99a3e0d 100644 (file)
@@ -38,11 +38,11 @@ Authors:
 <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
index 2b777f2429aa1c3b51d278c890b59680152843b3..de1bb0e4017a83cb0e2e362965478840ecbd7ed4 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 22cc0c62ebe91ccf4fa16f4e2d6830dde7ba242f..c57fd29cc11eb48986e7c970b1e9deead930a995 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 22baca08b46b01bca29eb3c3466d887e814a8da5..f7d781c9370ddc477dbcbfe53d38bd5d527991dd 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index 0be7f8bf139ab19c2f5b9c071c7daf71ea5b61a8..fcca8f8357a25c49b66ebc1ff6d7604accbe2d44 100644 (file)
@@ -37,11 +37,11 @@ Authors:
 <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
index d8b4256fb6d5115972765c6f56d65e00b7b54783..ea5497c2b1099635dc0124f2fe1782d1f0486b18 100755 (executable)
@@ -50,6 +50,7 @@ Authors:
         request.replyFailure();
     };
 
+    // check only null because not able to invoke replyFailure() multiple times
     tests["RequestedApplicationControl_replyFailure_extra_argument"] = function (request) {
         request.replyFailure(null);
     };
diff --git a/tct-application-tizen-tests/application/support/TCTAppControl/tests/RequestedApplicationControl_replyFailure_extra_argument.js b/tct-application-tizen-tests/application/support/TCTAppControl/tests/RequestedApplicationControl_replyFailure_extra_argument.js
deleted file mode 100755 (executable)
index c42c0f7..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-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");
index fd4ee29f2788ba493325203227528e17f2cacf4e..d3b6549814f166ccd52983539b01bca012fb09cc 100644 (file)
           </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>