advertiseData = new tizen.BluetoothLEAdvertiseData(advertiseDataInit);
assert_own_property(advertiseData, "manufacturerData", "advertiseData does not own manufacturerData property");
assert_equals(advertiseData.manufacturerData, null, "manufacturerData should be null by default");
- mock_manufactureData = new tizen.BluetoothLEManufacturerData("mock_id", "mock_data");
+ mock_manufactureData = new tizen.BluetoothLEManufacturerData("127", "0x0057");
advertiseData.manufacturerData = mock_manufactureData;
assert_equals(advertiseData.manufacturerData.id, mock_manufactureData.id, "manufacturerData should be updated");
assert_equals(advertiseData.manufacturerData.data, mock_manufactureData.data, "manufacturerData should be updated");
uuids: [battery_svc_uuid_16],
solicitationuuids: [heart_rate_svc_uuid_16]
};
- mock_serviceData = new tizen.BluetoothLEServiceData("0123", "mock_data");
+ mock_serviceData = new tizen.BluetoothLEServiceData("c500-11e5", "0x1811");
advertiseData = new tizen.BluetoothLEAdvertiseData(advertiseDataInit);
assert_own_property(advertiseData, "serviceData", "advertiseData does not own serviceData property");
assert_equals(advertiseData.serviceData, null, "serviceData should be null by default");
t.done();
} else {
tmp = device.manufacturerData;
- device.manufacturerData = new tizen.BluetoothLEManufacturerData("mock_id", "mock_data");
+ device.manufacturerData = new tizen.BluetoothLEManufacturerData("127", "0x0057");
assert_equals(device.manufacturerData.id, tmp.id, "ManufacturerData can be modified.");
assert_equals(device.manufacturerData.data, tmp.data, "ManufacturerData can be modified.");
t.done();
--- /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_toByteArray</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toByteArray
+//==== LABEL Check toByteArray method with arguments
+//==== PRIORITY P1
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toByteArray M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MR
+
+test(function () {
+ var dataInt8Array = new Int8Array([-21, 31]);
+ var dataUint8Array = new Uint8Array([240, 129]);
+ var dataString = "0x18b1";
+
+ var ary = tizen.bluetooth.toByteArray(dataInt8Array);
+ var ary2 = tizen.bluetooth.toByteArray(dataUint8Array);
+ var ary3 = tizen.bluetooth.toByteArray(dataString);
+
+ assert_type(ary, "array", "dataInt8Array toByteArray type test");
+ assert_array_equals(ary, Uint8Array.from(dataInt8Array), "toByteArray [dataInt8Array] output equals test");
+ assert_type(ary2, "array", "dataUint8Array toByteArray type test");
+ assert_array_equals(ary2, Uint8Array.from(dataUint8Array), "toByteArray [dataUint8Array] output equals test");
+ assert_type(ary3, "array", "dataString toByteArray type test");
+
+ const conver = str => {
+ var res = [];
+ for(var i=2; i<str.length; i+=2) {
+ res.push(parseInt(str.substr(i, 2), 16));
+ }
+ return res
+ }
+ var uint3 = new Uint8Array(conver("0x18b1")); // "0x18b1"
+ assert_array_equals(ary3, Uint8Array.from(uint3), "toByteArray [dataString] 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_toByteArray_exist</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toByteArray_exist
+//==== LABEL Check if toByteArray method exists
+//==== PRIORITY P0
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toByteArray 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, "toByteArray");
+}, 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_toByteArray_misarg</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toByteArray_misarg
+//==== LABEL Check toByteArray with missing all argument
+//==== PRIORITY P2
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toByteArray 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:"TypeMismatchError"},
+ function () {
+ tizen.bluetooth.toByteArray();
+ }, "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_toDOMString</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toDOMString
+//==== LABEL Check toDOMString method with arguments
+//==== PRIORITY P1
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toDOMString M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MR
+
+test(function () {
+ var dataInt8Array = new Int8Array([-21, 31]);
+ var str = tizen.bluetooth.toDOMString(dataInt8Array);
+
+ assert_type(str, "string", "toDOMString test");
+ assert_equals(str, "0xeb1f", "toDOMString 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_toDOMString_exist</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toDOMString_exist
+//==== LABEL Check if toDOMString method exists
+//==== PRIORITY P0
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toDOMString 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, "toDOMString");
+}, 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_toDOMString_misarg</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toDOMString_misarg
+//==== LABEL Check toDOMString with missing all argument
+//==== PRIORITY P2
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toDOMString 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:"TypeMismatchError"},
+ function () {
+ tizen.bluetooth.toDOMString();
+ }, "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_toUint8Array</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toUint8Array
+//==== LABEL Check toUint8Array method with arguments
+//==== PRIORITY P1
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toUint8Array M
+//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/bluetooth.html
+//==== TEST_CRITERIA MR
+
+test(function () {
+ var dataInt8Array = new Int8Array([-21, 31]);
+ var dataUint8Array = new Uint8Array([240, 129]);
+ var dataString = "0x18b1";
+ var byte = tizen.bluetooth.toUint8Array(dataInt8Array);
+ var byte2 = tizen.bluetooth.toUint8Array(dataUint8Array);
+ var byte3 = tizen.bluetooth.toUint8Array(dataString);
+
+ assert_type(byte, "object", "toUint8Array test");
+ assert_type(byte2, "object", "toUint8Array test");
+ assert_type(byte3, "object", "toUint8Array test");
+
+ var uint1 = new Uint8Array([-21, 31]);
+ var uint2 = new Uint8Array([240, 129]);
+ const conver = str => {
+ var res = [];
+ for(var i=2; i<str.length; i+=2) {
+ res.push(parseInt(str.substr(i, 2), 16));
+ }
+ return res
+ }
+ var uint3 = new Uint8Array(conver("0x18b1"));
+
+ assert_array_equals(byte, uint1, "toUint8Array dataInt8Array output equals test");
+ assert_array_equals(byte2, uint2, "toUint8Array dataUint8Array output equals test");
+ assert_array_equals(byte3, uint3, "toUint8Array dataString 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_toUint8Array_exist</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toUint8Array_exist
+//==== LABEL Check if toUint8Array method exists
+//==== PRIORITY P0
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toUint8Array 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, "toUint8Array");
+}, 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_toUint8Array_misarg</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: BluetoothManager_toUint8Array_misarg
+//==== LABEL Check toUint8Array with missing all argument
+//==== PRIORITY P2
+//==== SPEC Tizen Web API:Communication:Bluetooth:BluetoothManager:toUint8Array 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:"TypeMismatchError"},
+ function () {
+ tizen.bluetooth.toUint8Array();
+ }, "Method with missing non-optional argument.");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
}, "BluetoothSocket_writeData_exist");
//BluetoothSocket_writeData_missarg MMA
- test(function () {
+ /*test(function () {
assert_throws ({name:"TypeMismatchError"},
function () {
socket.writeData();
socket.writeData(param[i]);
}, "Method type mismatch");
}
- }, "BluetoothSocket_writeData_TypeMismatch");
+ }, "BluetoothSocket_writeData_TypeMismatch");*/
//BluetoothSocket_close_extra_argument MNAEX
test(function () {
<capabilities>
<capability name="http://tizen.org/feature/network.bluetooth"/>
</capabilities>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray_exist" priority="P0" purpose="Check if toByteArray method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray" priority="P1" purpose="Check toByteArray method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray_misarg" priority="P2" purpose="Check toByteArray with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_exist" priority="P0" purpose="Check if toDOMString method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString" priority="P1" purpose="Check toDOMString method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_misarg" priority="P2" purpose="Check toDOMString with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_exist" priority="P0" purpose="Check if toUint8Array method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array" priority="P1" purpose="Check toUint8Array method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_misarg" priority="P2" purpose="Check toUint8Array with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<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>
<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_toByteArray_exist" priority="P0" purpose="Check if toByteArray method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray" priority="P1" purpose="Check toByteArray method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray_misarg" priority="P2" purpose="Check toByteArray with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_exist" priority="P0" purpose="Check if toDOMString method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString" priority="P1" purpose="Check toDOMString method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_misarg" priority="P2" purpose="Check toDOMString with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_exist" priority="P0" purpose="Check if toUint8Array method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array" priority="P1" purpose="Check toUint8Array method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_misarg" priority="P2" purpose="Check toUint8Array with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<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>
<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_toByteArray_exist" priority="P0" purpose="Check if toByteArray method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray" priority="P1" purpose="Check toByteArray method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray_misarg" priority="P2" purpose="Check toByteArray with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_exist" priority="P0" purpose="Check if toDOMString method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString" priority="P1" purpose="Check toDOMString method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_misarg" priority="P2" purpose="Check toDOMString with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_exist" priority="P0" purpose="Check if toUint8Array method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array" priority="P1" purpose="Check toUint8Array method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_misarg" priority="P2" purpose="Check toUint8Array with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<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>
<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_toByteArray_exist" priority="P0" purpose="Check if toByteArray method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray" priority="P1" purpose="Check toByteArray method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toByteArray_misarg" priority="P2" purpose="Check toByteArray with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toByteArray_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_exist" priority="P0" purpose="Check if toDOMString method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString" priority="P1" purpose="Check toDOMString method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toDOMString_misarg" priority="P2" purpose="Check toDOMString with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toDOMString_misarg.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_exist" priority="P0" purpose="Check if toUint8Array method exists">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_exist.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array" priority="P1" purpose="Check toUint8Array method without arguments">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase component="Tizen Device APIs/Communication/Bluetooth" execution_type="auto" id="BluetoothManager_toUint8Array_misarg" priority="P2" purpose="Check toUint8Array with missing all argument">
+ <description>
+ <test_script_entry>/opt/tct-bluetooth-tizen-tests/bluetooth/BluetoothManager_toUint8Array_misarg.html</test_script_entry>
+ </description>
+ </testcase>
<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>