--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidTo128bit</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidTo128bit
+//==== LABEL Check uuidTo128bit method with arguments
+//==== PRIORITY P1
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidTo128bit M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MR
+
+test(function () {
+ var uuid = tizen.bluetooth.uuidTo128bit("1234");
+
+ assert_type(uuid, "string", "uuidTo128bit test");
+ assert_equals(uuid, "00001234-0000-1000-8000-00805f9b34fb", "uuidTo128bit output equals test");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidTo128bit_exist</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidTo128bit_exist
+//==== LABEL Check if uuidTo128bit method exists
+//==== PRIORITY P0
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidTo128bit M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA ME
+
+test(function () {
+ check_method_exists(tizen.bluetooth, "uuidTo128bit");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidTo128bit_misarg</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidTo128bit_misarg
+//==== LABEL Check uuidTo128bit with missing all argument
+//==== PRIORITY P2
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidTo128bit M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MMA
+
+test(function () {
+ assert_throws ({name:"InvalidValuesError"},
+ function () {
+ tizen.bluetooth.uuidTo128bit(123);
+ }, "Method with missing non-optional argument.");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidToShortestPossible</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidToShortestPossible
+//==== LABEL Check uuidToShortestPossible method with arguments
+//==== PRIORITY P1
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidToShortestPossible M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MR
+
+test(function () {
+ var uuid = tizen.bluetooth.uuidToShortestPossible("1234");
+
+ assert_type(uuid, "string", "uuid test");
+ assert_equals(uuid, "1234", "uuidToShortestPossible output equals test");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidToShortestPossible_exist</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidToShortestPossible_exist
+//==== LABEL Check if uuidToShortestPossible method exists
+//==== PRIORITY P0
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidToShortestPossible M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA ME
+
+test(function () {
+ check_method_exists(tizen.bluetooth, "uuidToShortestPossible");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidToShortestPossible_misarg</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidToShortestPossible_misarg
+//==== LABEL Check uuidToShortestPossible with missing all argument
+//==== PRIORITY P2
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidToShortestPossible M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MMA
+
+test(function () {
+ assert_throws ({name:"InvalidValuesError"},
+ function () {
+ tizen.bluetooth.uuidToShortestPossible(123);
+ }, "Method with missing non-optional argument.");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidsEqual</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidsEqual
+//==== LABEL Check uuidsEqual method with arguments
+//==== PRIORITY P1
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidsEqual M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MR
+
+test(function () {
+ var equal = tizen.bluetooth.uuidsEqual("abcdef01-2345-6789-abcd-ef0123456789", "abcdef01");
+ var equal2 = tizen.bluetooth.uuidsEqual("ab5690ef", "ab5690ef-0000-1000-8000-00805F9B34FB");
+
+ assert_type(equal, "boolean", "uuidsEqual test");
+ assert_equals(equal, false, "uuidsEqual output false test");
+ assert_equals(equal2, true, "uuidsEqual output true test");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidsEqual_exist</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidsEqual_exist
+//==== LABEL Check if uuidsEqual method exists
+//==== PRIORITY P0
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidsEqual M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA ME
+
+test(function () {
+ check_method_exists(tizen.bluetooth, "uuidsEqual");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2020 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:
+ Feng Zhao <feng.zhao@samsung.com>
+
+-->
+<html>
+<head>
+<title>BluetoothManager_uuidsEqual_misarg</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_uuidsEqual_misarg
+//==== LABEL Check uuidsEqual with missing all argument
+//==== PRIORITY P2
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:uuidsEqual M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MMA
+
+test(function () {
+ assert_throws ({name:"InvalidValuesError"},
+ function () {
+ tizen.bluetooth.uuidsEqual();
+ }, "Method with missing non-optional argument.");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
<capabilities>
<capability name="http://tizen.org/feature/network.bluetooth"/>
</capabilities>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_exist" priority="P0" purpose="Check if uuidsEqual method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual" priority="P1" purpose="Check uuidsEqual method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_misarg" priority="P2" purpose="Check uuidsEqual with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_exist" priority="P0" purpose="Check if uuidTo128bit method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit" priority="P1" purpose="Check uuidTo128bit method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_misarg" priority="P2" purpose="Check uuidTo128bit with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_exist" priority="P0" purpose="Check if uuidToShortestPossible method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible" priority="P1" purpose="Check uuidToShortestPossible method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_misarg" priority="P2" purpose="Check uuidToShortestPossible with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_BASE_UUID_const" priority="P1" purpose="Check various identifiers of BluetoothManager_BASE_UUID">
<description>
<test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html</test_script_entry>
<capability name="http://tizen.org/feature/profile"><value>MOBILE</value></capability>
<capability name="http://tizen.org/feature/network.bluetooth"/>
</capabilities>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_exist" priority="P0" purpose="Check if uuidsEqual method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual" priority="P1" purpose="Check uuidsEqual method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_misarg" priority="P2" purpose="Check uuidsEqual with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_exist" priority="P0" purpose="Check if uuidTo128bit method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit" priority="P1" purpose="Check uuidTo128bit method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_misarg" priority="P2" purpose="Check uuidTo128bit with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_exist" priority="P0" purpose="Check if uuidToShortestPossible method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible" priority="P1" purpose="Check uuidToShortestPossible method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_misarg" priority="P2" purpose="Check uuidToShortestPossible with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_BASE_UUID_const" priority="P1" purpose="Check various identifiers of BluetoothManager_BASE_UUID">
<description>
<test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html</test_script_entry>
<capability name="http://tizen.org/feature/profile"><value>WEARABLE</value></capability>
<capability name="http://tizen.org/feature/network.bluetooth"/>
</capabilities>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_exist" priority="P0" purpose="Check if uuidsEqual method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual" priority="P1" purpose="Check uuidsEqual method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_misarg" priority="P2" purpose="Check uuidsEqual with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_exist" priority="P0" purpose="Check if uuidTo128bit method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit" priority="P1" purpose="Check uuidTo128bit method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_misarg" priority="P2" purpose="Check uuidTo128bit with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_exist" priority="P0" purpose="Check if uuidToShortestPossible method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible" priority="P1" purpose="Check uuidToShortestPossible method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_misarg" priority="P2" purpose="Check uuidToShortestPossible with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_BASE_UUID_const" priority="P1" purpose="Check various identifiers of BluetoothManager_BASE_UUID">
<description>
<test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html</test_script_entry>
<capability name="http://tizen.org/feature/profile"><value>TV</value></capability>
<capability name="http://tizen.org/feature/network.bluetooth"/>
</capabilities>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_exist" priority="P0" purpose="Check if uuidsEqual method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual" priority="P1" purpose="Check uuidsEqual method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidsEqual_misarg" priority="P2" purpose="Check uuidsEqual with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_exist" priority="P0" purpose="Check if uuidTo128bit method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit" priority="P1" purpose="Check uuidTo128bit method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidTo128bit_misarg" priority="P2" purpose="Check uuidTo128bit with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_exist" priority="P0" purpose="Check if uuidToShortestPossible method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible" priority="P1" purpose="Check uuidToShortestPossible method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_uuidToShortestPossible_misarg" priority="P2" purpose="Check uuidToShortestPossible with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_BASE_UUID_const" priority="P1" purpose="Check various identifiers of BluetoothManager_BASE_UUID">
<description>
<test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_BASE_UUID_const.html</test_script_entry>