[common][humanactivitymonitor][TWDAPI-269, remove start&stop type_WRIST_UP] 11/243711/1
authorzhaofeng <feng.zhao@samsung.com>
Wed, 9 Sep 2020 08:47:40 +0000 (16:47 +0800)
committerzhaofeng <feng.zhao@samsung.com>
Wed, 9 Sep 2020 08:47:47 +0000 (16:47 +0800)
Change-Id: Id9d52485cdfe9b087a43a10f70aa69d9513f7f63
Signed-off-by: zhaofeng <feng.zhao@samsung.com>
common/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html [deleted file]
common/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html [deleted file]
common/tct-humanactivitymonitor-tizen-tests/tests.full.xml
common/tct-humanactivitymonitor-tizen-tests/tests.xml

diff --git a/common/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html b/common/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html
deleted file mode 100755 (executable)
index 237e597..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2014 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:
-        Saleh Enam Shohag <saleh.enam@samsung.com>
-
--->
-<html>
-<head>
-<title>HumanActivityMonitorManager_start_type_WRIST_UP</title>
-<meta charset="utf-8"/>
-<script src="support/unitcommon.js"></script>
-<script src="support/humanactivitymonitor_common.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-//==== TEST: HumanActivityMonitorManager_start_type_WRIST_UP
-//==== LABEL Check if method HumanActivityMonitorManager::start() works properly for WRIST_UP
-//==== PRIORITY P1
-//==== SPEC Tizen Web API:Sensor:HumanActivityMonitor:HumanActivityMonitorManager:start M
-//==== SPEC_URL TBD
-//==== TEST_CRITERIA MR MAST
-
-test(function () {
-    var returnedValue = null, humanActivityType = "WRIST_UP";
-    try {
-        returnedValue = tizen.humanactivitymonitor.start(humanActivityType);
-        assert_equals(returnedValue, undefined, "Incorrect returned value from start method");
-        tizen.humanactivitymonitor.stop(humanActivityType);
-    } catch (e) {
-        if(e.name === NOT_SUPPORTED_EXCEPTION) {
-        } else {
-            assert_unreached("unexpected exception is thrown" + e.name + ", msg: " + e.message);
-        }
-    }
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/common/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html b/common/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html
deleted file mode 100755 (executable)
index be8a0bf..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2014 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:
-        Wahid Dilawar Al-Hakim <wahid.h@samsung.com>
-
--->
-<html>
-<head>
-<title>HumanActivityMonitorManager_stop_type_WRIST_UP</title>
-<meta charset="utf-8"/>
-<script src="support/unitcommon.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-//==== TEST: HumanActivityMonitorManager_stop_type_WRIST_UP
-//==== LABEL Check if HumanActivityMonitorManager::stop() method with WRIST_UP works properly
-//==== SPEC Tizen Web API:Sensor:HumanActivityMonitor:HumanActivityMonitorManager:stop M
-//==== SPEC_URL TBD
-//==== PRIORITY P1
-//==== TEST_CRITERIA MR
-
-test(function () {
-    var returnedValue = null, humanActivityType = "WRIST_UP";
-    returnedValue = tizen.humanactivitymonitor.start(humanActivityType);
-    assert_equals(returnedValue, undefined, "Incorrect returned value from start method");
-    returnedValue = tizen.humanactivitymonitor.stop(humanActivityType);
-    assert_equals(returnedValue, undefined, "Incorrect returned value from stop method");
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
index ca25cadf32e54bb6d0355abe5d0db02b10a19000..f22738013a11ba56709717015c5030ec89bd1631 100755 (executable)
         </specs>
       </testcase>
     </set>
-    <set name="HumanActivityMonitor_with_wrist_up_mobile">
-      <capabilities>
-        <capability name="http://tizen.org/feature/profile"><value>MOBILE</value></capability>
-        <capability name="http://tizen.org/feature/sensor.wrist_up"/>
-      </capabilities>
-      <testcase purpose="Check if method HumanActivityMonitorManager::start() works properly for WRIST_UP" type="compliance" status="approved" component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" priority="P1" id="HumanActivityMonitorManager_start_type_WRIST_UP">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="HumanActivityMonitorManager" element_type="method" element_name="start" specification="HumanActivityMonitor" section="Sensor" category="Tizen Device API Specifications"/>
-            <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/humanactivitymonitor.html</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if HumanActivityMonitorManager::stop() method with WRIST_UP works properly" type="compliance" status="approved" component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" priority="P1" id="HumanActivityMonitorManager_stop_type_WRIST_UP">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="HumanActivityMonitorManager" element_type="method" element_name="stop" specification="HumanActivityMonitor" section="Sensor" category="Tizen Device API Specifications"/>
-            <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/humanactivitymonitor.html</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-    </set>
     <set name="HumanActivityMonitor_heart_rate_monitor_mobile">
       <capabilities>
         <capability name="http://tizen.org/feature/profile"><value>MOBILE</value></capability>
         </specs>
       </testcase>
     </set>
-    <set name="HumanActivityMonitor_with_wrist_up_wearable">
-      <capabilities>
-        <capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>
-        <capability name="http://tizen.org/feature/sensor.wrist_up"/>
-      </capabilities>
-      <testcase purpose="Check if method HumanActivityMonitorManager::start() works properly for WRIST_UP" type="compliance" status="approved" component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" priority="P1" id="HumanActivityMonitorManager_start_type_WRIST_UP">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="HumanActivityMonitorManager" element_type="method" element_name="start" specification="HumanActivityMonitor" section="Sensor" category="Tizen Device API Specifications"/>
-            <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/humanactivitymonitor.html</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if HumanActivityMonitorManager::stop() method with WRIST_UP works properly" type="compliance" status="approved" component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" priority="P1" id="HumanActivityMonitorManager_stop_type_WRIST_UP">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="HumanActivityMonitorManager" element_type="method" element_name="stop" specification="HumanActivityMonitor" section="Sensor" category="Tizen Device API Specifications"/>
-            <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/humanactivitymonitor.html</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-    </set>
     <set name="HumanActivityMonitor_heart_rate_monitor_wearable">
       <capabilities>
         <capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>
index 6018471cd339393a48e5812dfb2933507039b992..a1c6287f874957b03bebf6a450720fb31f794a65 100755 (executable)
         </description>
       </testcase>
     </set>
-    <set name="HumanActivityMonitor_with_wrist_up_mobile">
-      <capabilities>
-        <capability name="http://tizen.org/feature/profile"><value>MOBILE</value></capability>
-        <capability name="http://tizen.org/feature/sensor.wrist_up"/>
-      </capabilities>
-      <testcase component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" id="HumanActivityMonitorManager_start_type_WRIST_UP" priority="P1" purpose="Check if method HumanActivityMonitorManager::start() works properly for WRIST_UP">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" id="HumanActivityMonitorManager_stop_type_WRIST_UP" priority="P1" purpose="Check if HumanActivityMonitorManager::stop() method with WRIST_UP works properly">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html</test_script_entry>
-        </description>
-      </testcase>
-    </set>
     <set name="HumanActivityMonitor_heart_rate_monitor_mobile">
       <capabilities>
         <capability name="http://tizen.org/feature/profile"><value>MOBILE</value></capability>
         </description>
       </testcase>
     </set>
-    <set name="HumanActivityMonitor_with_wrist_up_wearable">
-      <capabilities>
-        <capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>
-        <capability name="http://tizen.org/feature/sensor.wrist_up"/>
-      </capabilities>
-      <testcase component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" id="HumanActivityMonitorManager_start_type_WRIST_UP" priority="P1" purpose="Check if method HumanActivityMonitorManager::start() works properly for WRIST_UP">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_start_type_WRIST_UP.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="Tizen Device APIs/Sensor/HumanActivityMonitor" execution_type="auto" id="HumanActivityMonitorManager_stop_type_WRIST_UP" priority="P1" purpose="Check if HumanActivityMonitorManager::stop() method with WRIST_UP works properly">
-        <description>
-          <test_script_entry>/opt/tct-humanactivitymonitor-tizen-tests/humanactivitymonitor/HumanActivityMonitorManager_stop_type_WRIST_UP.html</test_script_entry>
-        </description>
-      </testcase>
-    </set>
     <set name="HumanActivityMonitor_heart_rate_monitor_wearable">
       <capabilities>
         <capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>