[common][bluetooth][TWDAPI-258, add new case of uuidTo128bit, uuidToShortestPossible... 45/242845/5
authorzhaofeng <feng.zhao@samsung.com>
Tue, 1 Sep 2020 08:07:08 +0000 (16:07 +0800)
committerFENG ZHAO <feng.zhao@samsung.com>
Fri, 4 Sep 2020 08:57:09 +0000 (08:57 +0000)
Change-Id: I4f1b2c66bb7682df328b8c7a3117b7aefe9df7ce
Signed-off-by: zhaofeng <feng.zhao@samsung.com>
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html [new file with mode: 0755]
common/tct-bluetooth-tizen-tests/tests.full.xml
common/tct-bluetooth-tizen-tests/tests.xml

diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit.html
new file mode 100755 (executable)
index 0000000..e907acf
--- /dev/null
@@ -0,0 +1,46 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_exist.html
new file mode 100755 (executable)
index 0000000..6d670b2
--- /dev/null
@@ -0,0 +1,43 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidTo128bit_misarg.html
new file mode 100755 (executable)
index 0000000..230a4cb
--- /dev/null
@@ -0,0 +1,46 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible.html
new file mode 100755 (executable)
index 0000000..b083d7b
--- /dev/null
@@ -0,0 +1,46 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_exist.html
new file mode 100755 (executable)
index 0000000..a5ea4eb
--- /dev/null
@@ -0,0 +1,43 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidToShortestPossible_misarg.html
new file mode 100755 (executable)
index 0000000..5bd0c6c
--- /dev/null
@@ -0,0 +1,46 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual.html
new file mode 100755 (executable)
index 0000000..0e9c27f
--- /dev/null
@@ -0,0 +1,48 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_exist.html
new file mode 100755 (executable)
index 0000000..0ad2bfc
--- /dev/null
@@ -0,0 +1,43 @@
+<!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
diff --git a/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html b/common/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_uuidsEqual_misarg.html
new file mode 100755 (executable)
index 0000000..98b6f2d
--- /dev/null
@@ -0,0 +1,46 @@
+<!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
index ee99089d2b8749fb0cc6ee441dd48890869cdcde..1602c4ff6cd4f37b89d062bfddf0b580adbb021b 100755 (executable)
       <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>
index ad7d70b4d2c2ebc0f62c0077cdc1951c7d395c9d..f7e1e20916dabe495b6460ebbb67954c96a445e2 100755 (executable)
         <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>
@@ -2389,6 +2434,51 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from
         <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>
@@ -4132,6 +4222,51 @@ The bluetooth of the remote/test device MUST be turned on and discoverable from
         <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>