From: Tomasz Paciorek Date: Mon, 7 Oct 2013 15:35:50 +0000 (+0200) Subject: [systeminfo] - various fixes X-Git-Tag: 2.2.1_release~105^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0449bbed3eeb8e348e0f860afdd023b853ef9611;p=test%2Ftct%2Fweb%2Fapi.git [systeminfo] - various fixes Change-Id: Ia187e5686022d650e73fcacba8ac91916dd87c6f --- diff --git a/tct-systeminfo-tizen-tests/resources/unitcommon.js b/tct-systeminfo-tizen-tests/resources/unitcommon.js deleted file mode 100644 index 9f972c1eb..000000000 --- a/tct-systeminfo-tizen-tests/resources/unitcommon.js +++ /dev/null @@ -1,559 +0,0 @@ -/* - -Copyright (c) 2013 Samsung Electronics Co., Ltd. - -Licensed under the Apache License, Version 2.0 (the License); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - - -Authors: - - */ - - -MIN_BYTE = -128; -MAX_BYTE = 127; -MIN_OCTET = 0; -MAX_OCTET = 255; -MIN_SHORT = -32768; -MAX_SHORT = 32767; -MIN_UNSIGNED_SHORT = 0; -MAX_UNSIGNED_SHORT = 65535; -MIN_LONG = -2147483648; -MAX_LONG = 2147483647; -MIN_UNSIGNED_LONG = 0; -MAX_UNSIGNED_LONG = 4294967295; -MIN_LONG_LONG = -9223372036854775808; -MAX_LONG_LONG = 9223372036854775807; -MIN_UNSIGNED_LONG_LONG = 0; -MAX_UNSIGNED_LONG_LONG = 18446744073709551615; - -TYPE_MISMATCH_EXCEPTION = {name: 'TypeMismatchError'}; -NOT_FOUND_EXCEPTION = {name: 'NotFoundError'}; -INVALID_VALUES_EXCEPTION = {name: 'InvalidValuesError'}; -IO_EXCEPTION = {name: 'IOError'}; -SECURITY_EXCEPTION = {name: 'SecurityError'}; - - -(function () { - var head_src = document.head.innerHTML; - if (head_src.search(/\/testharness.js\W/) === -1) { - document.write('\n'); - } - if (head_src.search(/\/testharnessreport.js\W/) === -1) { - document.write('\n'); - } -})(); - -var _registered_types = {}; - -function _resolve_registered_type(type) { - while (type in _registered_types) { - type = _registered_types[type]; - } - return type; -} - -/** - * Method checks extra argument for none argument method. - * The only check is that method will not throw an exception. - * Example usage: - * checkExtraArgument(tizen.notification, "removeAll"); - * - * @param object object - * @param methodName string - name of the method - */ -function checkExtraArgument(object, methodName) { - var extraArgument = [ - null, - undefined, - "Tizen", - 1, - false, - ["one", "two"], - {argument: 1}, - function () {} - ], i; - - for (i = 0; i < extraArgument.length; i++) { - object[methodName](extraArgument[i]); - } -} - -/** - * Method to validate conversion. - * Example usage: - * conversionTable = getTypeConversionExceptions("functionObject", true); - * for(i = 0; i < conversionTable.length; i++) { - * errorCallback = conversionTable[i][0]; - * exceptionName = conversionTable[i][1]; - * - * assert_throws({name : exceptionName}, - * function () { - * tizen.systemsetting.setProperty("HOME_SCREEN", - * propertyValue, successCallback, errorCallback); - * }, exceptionName + " should be thrown - given incorrect errorCallback."); - * } - * - * @param conversionType - * @param isOptional - * @returns table of tables which contain value (index 0) and exceptionName (index 1) - * - */ -function getTypeConversionExceptions(conversionType, isOptional) { - var exceptionName = "TypeMismatchError", - conversionTable; - switch (conversionType) { - case "enum": - conversionTable = [ - [undefined, exceptionName], - [null, exceptionName], - [0, exceptionName], - [true, exceptionName], - ["dummyInvalidEnumValue", exceptionName], - [{ }, exceptionName] - ]; - break; - case "double": - conversionTable = [ - [undefined, exceptionName], - [NaN, exceptionName], - [Number.POSITIVE_INFINITY, exceptionName], - [Number.NEGATIVE_INFINITY, exceptionName], - ["TIZEN", exceptionName], - [{ name : "TIZEN" }, exceptionName], - [function () { }, exceptionName] - ]; - break; - case "object": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - case "functionObject": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [[], exceptionName], - [{ }, exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - case "array": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [{ }, exceptionName], - [function () { }, exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - case "dictionary": - conversionTable = [ - [true, exceptionName], - [false, exceptionName], - [NaN, exceptionName], - [0, exceptionName], - ["", exceptionName], - ["TIZEN", exceptionName], - [undefined, exceptionName] - ]; - if (!isOptional) { - conversionTable.push([null, exceptionName]); - } - break; - default: - assert_unreached("Fix your test. Wrong conversionType '" + conversionType + "'."); - }; - - return conversionTable; -} - - -function assert_type(obj, type, description) { - var org_type = type, prop_name, prop_type, prop_value; - - type = _resolve_registered_type(type); - - if (typeof (type) === 'string') { - type = type.toLowerCase(); - switch (type) { - case 'object': - case 'string': - case 'number': - case 'function': - case 'boolean': - case 'undefined': - case 'xml': - assert_equals(typeof (obj), type, description); - break; - case 'null': - assert_true(obj === null, description); - break; - case 'array': - assert_true(Array.isArray(obj), description); - break; - case 'date': - assert_true(obj instanceof Date, description); - break; - case 'byte': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_BYTE, description + " - value too low."); - assert_less_than_equal(obj, MAX_BYTE, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'octet': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_OCTET, description + " - value too low."); - assert_less_than_equal(obj, MAX_OCTET, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'short': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_SHORT, description + " - value too low."); - assert_less_than_equal(obj, MAX_SHORT, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'unsigned short': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_UNSIGNED_SHORT, description + " - value too low."); - assert_less_than_equal(obj, MAX_UNSIGNED_SHORT, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_LONG, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'unsigned long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_UNSIGNED_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_UNSIGNED_LONG, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - case 'long long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_LONG_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_LONG_LONG, description + " - value too high."); - assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); - break; - case 'unsigned long long': - assert_equals(typeof (obj), 'number', description); - assert_greater_than_equal(obj, MIN_UNSIGNED_LONG_LONG, description + " - value too low."); - assert_less_than_equal(obj, MAX_UNSIGNED_LONG_LONG, description + " - value too high."); - assert_equals(obj % 1, 0, description + " - value is not an integer."); - break; - default: - assert_unreached('Fix your test. Wrong type \'' + org_type + '\''); - } - } else if (typeof (type) === 'function') { - assert_true(obj instanceof type, description); - } else if (typeof (type) === 'object') { - for (prop_name in type) { - prop_type = type[prop_name]; - if (prop_type === 'function') { - assert_inherits(obj, prop_name); - assert_equals(typeof obj[prop_name], prop_type, 'Object should have method ' + prop_name); - } else { - assert_own_property(obj, prop_name); - } - } - } else { - assert_unreached('Fix your test. Wrong type ' + org_type); - } -} - -function register_type(alias, type_spec) { - _registered_types[alias] = type_spec; -} - -/** - * Method to check if attribute is const. - * Example usage: - * check_const(tizen.bluetooth.deviceMinor, 'TOY_DOLL', 0x03, 'number', 0x29B); - * - * @param obj object to test which has const attribute - * @param attributeName attribute name. - * @param expectedValue expected value of provided attribute name - * @param expectedType expected type of provided attribute name - * @param valueToAssign value to assign in order to check if attribute value can be modified - */ -function check_const(obj, attributeName, expectedValue, expectedType, valueToAssign) { - var tmp; - if (expectedValue === valueToAssign) { - assert_unreached("Fix your test. The same values given for " + attributeName + - " in 'value' and 'valueToSet' arguments."); - } - if (typeof (attributeName) === "string") { - assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); - assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); - if (typeof (expectedType) !== "undefined") { - if (expectedValue === null) { - assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); - } else { - assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); - } - } else { - assert_unreached("Fix your test. Wrong type " + expectedType); - } - tmp = obj[attributeName]; - obj[attributeName] = valueToAssign; - assert_equals(obj[attributeName], tmp, attributeName + " can be modified."); - } else { - assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); - } -} - -/** - * Method to check if attribute is readonly. - * Example usage: - * check_readonly(statusNotification, "postedTime", null, 'object', new Date()); - * - * @param obj object to test which has readonly attribute - * @param attributeName attribute name. - * @param expectedValue expected value of provided attribute name - * @param expectedType expected type of provided attribute name - * @param valueToAssign value to assign in order to check if attribute value can be modified - */ -function check_readonly(obj, attributeName, expectedValue, expectedType, valueToAssign) { - check_const(obj, attributeName, expectedValue, expectedType, valueToAssign); -} - -/** - * Method to check if attribute can be set to null. - * Example usage: - * check_not_nullable(syncInfo, "mode"); - * - * @param obj object to test which has not nullable attribute - * @param attributeName attribute name. - */ -function check_not_nullable(obj, attributeName) -{ var old_value = obj[attributeName]; - obj[attributeName] = null; - assert_not_equals(obj[attributeName], null, "Attribute " + attributeName + " can be set to null."); - obj[attributeName] = old_value; -} - -/** - * Method to check NoInterfaceObject - * Example usage: - * check_no_interface_object("BluetoothAdapter") - * - * @param interfaceName interface name - */ -function check_no_interface_object(interfaceName) { - assert_throws({name: "TypeError"}, function () { - tizen[interfaceName](); - },"Wrong call as a function"); - assert_throws({name: "TypeError"}, function () { - new tizen[interfaceName](); - },"Wrong call as a new function"); - assert_throws({name: "TypeError"}, function () { - ({}) instanceof tizen[interfaceName]; - },"instanceof exception"); - assert_equals(tizen[interfaceName], undefined, interfaceName + " is not undefined."); -} - - -/** - * Method to check Constructors - * Example usage: - * check_constructor("BluetoothAdapter") - * - * @param constructorName constructor name - */ - -function check_constructor(constructorName) { - assert_true(constructorName in tizen, "No " + constructorName + " in tizen."); - assert_false({} instanceof tizen[constructorName],"Custom object is not instance of " + constructorName); - assert_throws({ - name: "TypeError" - }, function () { - tizen[constructorName](); - }, "Constructor called as function."); -} - -/** - * Method to check if given method can be overridden in a given object - (TEMPORARY REMOVED). - * That method also checks if given method exists in a given object. - * Example usage: - * check_method_exists(tizen.notification, "get"); - * - * @param obj object with method - * @param methodName name of the method to check. - */ -function check_method_exists(obj, methodName) { - assert_type(obj[methodName], 'function', "Method does not exist."); -} - -/** - * Method to check extensibility of given object. - * Method checks if new attribute and method can be added. - * Example usage: - * check_extensibility(tizen.notification); - * - * @param obj object to check - */ -function check_extensibility(obj) { - var dummyAttribute = "dummyAttributeValue", dummyMethodResult = "dummyMethodResultValue"; - obj.newDummyMethod = function() { - return dummyMethodResult; - } - assert_equals(obj.newDummyMethod(), dummyMethodResult, "Incorrect result from added method."); - - obj.newDummyAttribute = dummyAttribute; - assert_equals(obj.newDummyAttribute, dummyAttribute, "Incorrect result from added attribute."); -} - -/** - * Method to check if attribute can be modify. - * Example usage: - * check_attr(downloadRequest, "fileName", default_val, "string", "file_name.html"); - * - * @param obj object to test which has not readonly attribute - * @param attributeName attribute name. - * @param expectedValue expected value of provided attribute name - * @param expectedType expected type of provided attribute name - * @param valueToAssign value to assign in order to check if attribute value can be modified - */ -function check_attribute(obj, attributeName, expectedValue, expectedType, valueToAssign) { - if (expectedValue === valueToAssign) { - assert_unreached("Fix your test. The same values given for " + attributeName + - " in 'value' and 'valueToSet' arguments."); - } - if (typeof (attributeName) === "string") { - assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); - assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); - if (typeof (expectedType) !== "undefined") { - if (expectedValue === null) { - assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); - } else { - assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); - } - } else { - assert_unreached("Fix your test. Wrong type " + expectedType); - } - obj[attributeName] = valueToAssign; - assert_equals(obj[attributeName], valueToAssign, attributeName + " can be modified."); - } else { - assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); - } -} - -/** - * Method to check if whole array can be overwritten with an invalid value. - * Sample usage: - * check_invalid_array_assignments(message, "to", false); - * - * @param obj object which has the array as its property - * @param array name of the array to check - * @param isNullable indicates if the array can be null - */ -function check_invalid_array_assignments(obj, array, isNullable) { - var args = [undefined, true, false, NaN, 0, "TIZEN", {}, function () {}], - val = obj[array], i; - - if (!isNullable) { - obj[array] = null; - assert_not_equals(obj[array], null, "Non-nullable array was set to null"); - assert_type(obj[array], "array", "Non-nullable array type changed after assigning null"); - assert_equals(obj[array].toString(), val.toString(), "Non-nullable array contents changed after assigning null"); - } - - for (i = 0 ; i < args.length ; i++) { - obj[array] = args[i]; - assert_type(obj[array], "array", "Array type changed after assigning an invalid value"); - assert_equals(obj[array].toString(), val.toString(), "Array contents changed after assigning an invalid value"); - } -} - -/** - * Method to check if an object can be overwritten with an invalid value. - * Sample usage: - * check_invalid_object_assignments(message, "body", false); - * - * @param parentObj object which has the 'obj' object as its property - * @param obj name of the object to check - * @param isNullable indicates if the object can be null - */ -function check_invalid_obj_assignments(parentObj, obj, isNullable) { - var args = [undefined, true, false, NaN, 0, "TIZEN", function () {}], - val = parentObj[obj], i; - - if (!isNullable) { - parentObj[obj] = null; - assert_equals(parentObj[obj], val, "Non-nullable obj was modified after assigning null"); - } - - for (i = 0 ; i < args.length ; i++) { - parentObj[obj] = args[i]; - assert_equals(parentObj[obj], val, "The object was set to " + args[i]); - } -} - -/** - * Method to validate conversion for listeners. - * Example usage: - * incorrectListeners = getListenerConversionExceptions(["oninstalled", "onupdated", "onuninstalled"]); - * for(i = 0; i < incorrectListeners.length; i++) { - * packageInformationEventCallback = incorrectListeners[i][0]; - * exceptionName = incorrectListeners[i][1]; - * assert_throws({name : exceptionName}, - * function () { - * tizen.package.setPackageInfoEventListener(packageInformationEventCallback); - * }, exceptionName + " should be thrown - given incorrect successCallback."); - * } - * - * - * @param callbackNames Array with names - * @returns {Array} table of tables which contain incorrect listener (index 0) and exceptionName (index 1) - * - */ -function getListenerConversionExceptions(callbackNames) { - var result = [], conversionTable, i, j, listenerName; - conversionTable = getTypeConversionExceptions("functionObject", false); - - for (i = 0; i < callbackNames.length; i++) { - for (j = 0; j < conversionTable.length; j++) { - listenerName = {}; - listenerName[callbackNames[i]] = conversionTable[j][0]; - result.push([listenerName, conversionTable[j][1]]); - } - } - - return result; -} diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_extend.html index ff6e273cc..27690bc3e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoBattery_extend - +
@@ -37,7 +37,7 @@ Authors: //==== PRIORITY P3 setup({timeout: 90000}); -var t = async_test("SystemInfoBattery_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name:" + + assert_unreached("getPropertyValue() error callback invoked: name:" + error.message + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_isCharging_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_isCharging_attribute.html index f263a2f7e..0cae881aa 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_isCharging_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_isCharging_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoBattery_isCharging_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoBattery_isCharging_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.message + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_level_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_level_attribute.html index 9b991fbd5..1ff52388d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_level_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_level_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoBattery_level_attribute - + @@ -37,7 +37,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO AVL setup({timeout: 90000}); -var t = async_test("SystemInfoBattery_level_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -49,7 +49,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.message + ", msg: " + error.name); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_notexist.html index 86379ae8a..81ecec647 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBattery_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoBattery_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoBattery"); -}, "SystemInfoBattery_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_buildVersion_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_buildVersion_attribute.html index 364bfe711..4b2edca3a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_buildVersion_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_buildVersion_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoBuild_buildVersion_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoBuild_buildVersion_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_extend.html index b2692c299..2a932a477 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoBuild_extend - +
@@ -37,7 +37,7 @@ Authors: //==== PRIORITY P3 setup({timeout: 90000}); -var t = async_test("SystemInfoBuild_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -45,7 +45,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_manufacturer_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_manufacturer_attribute.html index 1ec871da6..838d6eca3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_manufacturer_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_manufacturer_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoBuild_manufacturer_attribute - +
@@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.message + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_model_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_model_attribute.html index b4944e0a4..ec18019b3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_model_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_model_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoBuild_model_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoBuild_model_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (e) { - assert_unreached("Exception : " + e.message); + assert_unreached("Exception: " + e.message); }); tizen.systeminfo.getPropertyValue("BUILD", getPropertyValueSuccess, getPropertyValueError); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_notexist.html index a13974bdb..f6ad0c706 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoBuild_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoBuild_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoBuild"); -}, "SystemInfoBuild_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_apn_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_apn_attribute.html index 26ccdd2ac..8e8816f11 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_apn_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_apn_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_apn_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_apn_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_cellId_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_cellId_attribute.html index 37ff60826..1bcae1ba9 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_cellId_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_cellId_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_cellId_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_cellId_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_extend.html index eb455e057..b70b79ac5 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_extend - +
@@ -37,7 +37,7 @@ Authors: //==== PRIORITY P3 setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_extend", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_imei_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_imei_attribute.html index 5ada2a42b..337e4a88a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_imei_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_imei_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_imei_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_imei_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipAddress_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipAddress_attribute.html index 11b2afb72..51245c9c3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipAddress_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipAddress_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_ipAddress_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_ipAddress_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipv6Address_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipv6Address_attribute.html index 2824269f1..a66f051e2 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipv6Address_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_ipv6Address_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_ipv6Address_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_ipv6Address_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isFlightMode_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isFlightMode_attribute.html index 1e9f615d7..7a0f1ac4a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isFlightMode_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isFlightMode_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_isFlightMode_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_isFlightMode_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isRoaming_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isRoaming_attribute.html index 851c8ca85..b82e2a981 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isRoaming_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_isRoaming_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_isRoaming_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_isRoaming_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_lac_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_lac_attribute.html index e8c54738a..2a4281ccc 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_lac_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_lac_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_lac_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_lac_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mcc_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mcc_attribute.html index 2a83c2159..398eb1b2f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mcc_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mcc_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_mcc_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_mcc_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mnc_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mnc_attribute.html index 409de3c60..784665a2f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mnc_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_mnc_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_mnc_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_mnc_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_notexist.html index c31a7ca22..d94ec1d25 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoCellularNetwork"); -}, "SystemInfoCellularNetwork_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_status_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_status_attribute.html index f11a82d94..505fcbdf1 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_status_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCellularNetwork_status_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCellularNetwork_status_attribute - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO setup({timeout: 90000}); -var t = async_test("SystemInfoCellularNetwork_status_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_extend.html index b836cdc88..6c0ee84b3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoCpu_extend - +
@@ -37,7 +37,7 @@ Authors: //==== TEST_CRITERIA OBX setup({timeout: 90000}); -var t = async_test("SystemInfoCpu_extend", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_load_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_load_attribute.html index 4f535b4b7..cb9484065 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_load_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_load_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoCpu_load_attribute - + @@ -37,7 +37,7 @@ Authors: //==== TEST_CRITERIA AE AT ARO AVL setup({timeout: 90000}); -var t = async_test("SystemInfoCpu_load_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -50,7 +50,7 @@ t.step(function () { }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_notexist.html index 9404343ad..a1ecdb355 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoCpu_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoCpu_notexist - + @@ -38,7 +38,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoCpu"); -}, "SystemInfoCpu_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometerWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometerWakeup_attribute.html index 308dfced8..c94f726e7 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometerWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometerWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_accelerometerWakeup_attribute - + @@ -39,7 +39,7 @@ test(function () { "SystemInfoDeviceCapability does not own accelerometerWakeup property."); check_readonly(deviceCapabilities, "accelerometerWakeup", deviceCapabilities.accelerometerWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_accelerometerWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_attribute.html index f2133513f..c2f448cc5 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_accelerometer_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own accelerometer property."); check_readonly(deviceCapabilities, "accelerometer", deviceCapabilities.accelerometer, "boolean", null); -}, "SystemInfoDeviceCapability_accelerometer_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_dependency.html index db747fb5d..ccadca83e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_accelerometer_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_accelerometer_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.accelerometer* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -42,7 +42,8 @@ test(function () { info.accelerometer === false && info.accelerometerWakeup === true, "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_accelerometer_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_autoRotation_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_autoRotation_attribute.html index 0f4f7cace..2753277bb 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_autoRotation_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_autoRotation_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_autoRotation_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own autoRotation property."); check_readonly(deviceCapabilities, "autoRotation", deviceCapabilities.autoRotation, "boolean", null); -}, "SystemInfoDeviceCapability_autoRotation_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometerWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometerWakeup_attribute.html index a39536949..8eb037ac1 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometerWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometerWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_barometerWakeup_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own barometerWakeup property."); check_readonly(deviceCapabilities, "barometerWakeup", deviceCapabilities.barometerWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_barometerWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_attribute.html index 1ce8e7ba3..cd8692ff0 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_barometer_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own barometer property."); check_readonly(deviceCapabilities, "barometer", deviceCapabilities.barometer, "boolean", null); -}, "SystemInfoDeviceCapability_barometer_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_dependency.html index e3b1b8bda..86c057959 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_barometer_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_barometer_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.barometer* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_barometer_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_bluetooth_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_bluetooth_attribute.html index 0a392027f..6d20f695d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_bluetooth_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_bluetooth_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_bluetooth_attribute - +
@@ -38,7 +38,7 @@ var deviceCapabilities = tizen.systeminfo.getCapabilities(); test(function () { assert_own_property(deviceCapabilities, "bluetooth", "SystemInfoDeviceCapability does not own bluetooth property."); check_readonly(deviceCapabilities, "bluetooth", deviceCapabilities.bluetooth, "boolean", null); -}, "SystemInfoDeviceCapability_bluetooth_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBackFlash_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBackFlash_attribute.html index f64ab3d09..9795a8d55 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBackFlash_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBackFlash_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_cameraBackFlash_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own cameraBackFlash property."); check_readonly(deviceCapabilities, "cameraBackFlash", deviceCapabilities.cameraBackFlash, "boolean", null); -}, "SystemInfoDeviceCapability_cameraBackFlash_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_attribute.html index 080fb59e0..16b6d3a48 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_cameraBack_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own cameraBack property."); check_readonly(deviceCapabilities, "cameraBack", deviceCapabilities.cameraBack, "boolean", null); -}, "SystemInfoDeviceCapability_cameraBack_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_dependency.html index 706b43400..b1770b0ab 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraBack_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_cameraBack_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.cameraBack* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -57,7 +57,8 @@ test(function () { info.camera === false && info.cameraBack === false && info.cameraBackFlash === true, "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_cameraBack_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFrontFlash_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFrontFlash_attribute.html index b355eb321..012474b11 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFrontFlash_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFrontFlash_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_cameraFrontFlash_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own cameraFrontFlash property."); check_readonly(deviceCapabilities, "cameraFrontFlash", deviceCapabilities.cameraFrontFlash, "boolean", null); -}, "SystemInfoDeviceCapability_cameraFrontFlash_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_attribute.html index 006061f93..30dc1010f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_cameraFront_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own cameraFront property."); check_readonly(deviceCapabilities, "cameraFront", deviceCapabilities.cameraFront, "boolean", null); -}, "SystemInfoDeviceCapability_cameraFront_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_dependency.html index 739788297..f059b213d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_cameraFront_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_cameraFront_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.cameraFront* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -58,7 +58,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_cameraFront_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_camera_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_camera_attribute.html index cf5e5e75c..540e2516d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_camera_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_camera_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_camera_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own camera property."); check_readonly(deviceCapabilities, "camera", deviceCapabilities.camera, "boolean", null); -}, "SystemInfoDeviceCapability_camera_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_dataEncryption_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_dataEncryption_attribute.html index 0779e7b47..396fcea38 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_dataEncryption_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_dataEncryption_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_dataEncryption_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own dataEncryption property."); check_readonly(deviceCapabilities, "dataEncryption", deviceCapabilities.dataEncryption, "boolean", null); -}, "SystemInfoDeviceCapability_dataEncryption_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_duid_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_duid_attribute.html index 84255bb63..7c2c7cc30 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_duid_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_duid_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_duid_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own duid property."); check_readonly(deviceCapabilities, "duid", deviceCapabilities.duid, "string", null); -}, "SystemInfoDeviceCapability_duid_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_extend.html index 9af75d25d..8c1750e73 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_extend - +
@@ -38,7 +38,7 @@ var deviceCapabilities = tizen.systeminfo.getCapabilities(); test(function () { check_extensibility(deviceCapabilities); -}, "SystemInfoDeviceCapability_extend"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_fmRadio_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_fmRadio_attribute.html index 7356a6953..b6aee86ea 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_fmRadio_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_fmRadio_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_fmRadio_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own fmRadio property."); check_readonly(deviceCapabilities, "fmRadio", deviceCapabilities.fmRadio, "boolean", null); -}, "SystemInfoDeviceCapability_fmRadio_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_graphicsAcceleration_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_graphicsAcceleration_attribute.html index 2ee9fd1e4..19c82b173 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_graphicsAcceleration_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_graphicsAcceleration_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_graphicsAcceleration_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own graphicsAcceleration property."); check_readonly(deviceCapabilities, "graphicsAcceleration", deviceCapabilities.graphicsAcceleration, "boolean", null); -}, "SystemInfoDeviceCapability_graphicsAcceleration_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscopeWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscopeWakeup_attribute.html index 485ae6bb4..aa132d0a9 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscopeWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscopeWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_gyroscopeWakeup_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own gyroscopeWakeup property."); check_readonly(deviceCapabilities, "gyroscopeWakeup", deviceCapabilities.gyroscopeWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_gyroscopeWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_attribute.html index 0a55cfd29..f2d2631c0 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_gyroscope_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own gyroscope property."); check_readonly(deviceCapabilities, "gyroscope", deviceCapabilities.gyroscope, "boolean", null); -}, "SystemInfoDeviceCapability_gyroscope_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_dependency.html index d69ba8a8a..c475ee873 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_gyroscope_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_gyroscope_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.gyroscope* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_gyroscope_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboardLayout_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboardLayout_attribute.html index ad49cb0cf..a3986a2e8 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboardLayout_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboardLayout_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_inputKeyboardLayout_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own inputKeyboardLayout property."); check_readonly(deviceCapabilities, "inputKeyboardLayout", deviceCapabilities.inputKeyboardLayout, "boolean", null); -}, "SystemInfoDeviceCapability_inputKeyboardLayout_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_attribute.html index 515959f08..0058ab472 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_inputKeyboard_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own inputKeyboard property."); check_readonly(deviceCapabilities, "inputKeyboard", deviceCapabilities.inputKeyboard, "boolean", null); -}, "SystemInfoDeviceCapability_inputKeyboard_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_dependency.html index 1b7402115..a9975e0d9 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_inputKeyboard_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_inputKeyboard_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.inputKeyboard* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -42,7 +42,8 @@ test(function () { info.inputKeyboard === false && info.inputKeyboardLayout === true, "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_inputKeyboard_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationGps_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationGps_attribute.html index 24d3192c6..6be66d38d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationGps_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationGps_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_locationGps_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own locationGps property."); check_readonly(deviceCapabilities, "locationGps", deviceCapabilities.locationGps, "boolean", null); -}, "SystemInfoDeviceCapability_locationGps_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationWps_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationWps_attribute.html index 72fac07b0..43e8ce2fb 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationWps_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_locationWps_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_locationWps_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own locationWps property."); check_readonly(deviceCapabilities, "locationWps", deviceCapabilities.locationWps, "boolean", null); -}, "SystemInfoDeviceCapability_locationWps_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_attribute.html index 80a75bc56..017379cd7 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_location_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own location property."); check_readonly(deviceCapabilities, "location", deviceCapabilities.location, "boolean", null); -}, "SystemInfoDeviceCapability_location_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_dependency.html index 44ea0dfa3..fffacc522 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_location_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_location_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.location* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -57,7 +57,8 @@ test(function () { info.location === false && info.locationGps === false && info.locationWps === true, "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_location_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometerWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometerWakeup_attribute.html index 28fe881ea..a03eeb0de 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometerWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometerWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_magnetometerWakeup_attribute - + @@ -39,7 +39,7 @@ test(function () { "SystemInfoDeviceCapability does not own magnetometerWakeup property."); check_readonly(deviceCapabilities, "magnetometerWakeup", deviceCapabilities.magnetometerWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_magnetometerWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_attribute.html index 987df0d3f..57374cbb9 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_magnetometer_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own magnetometer property."); check_readonly(deviceCapabilities, "magnetometer", deviceCapabilities.magnetometer, "boolean", null); -}, "SystemInfoDeviceCapability_magnetometer_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_dependency.html index 802717f77..72ec5bea0 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_magnetometer_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_magnetometer_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.magnetometer* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_magnetometer_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_microphone_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_microphone_attribute.html index 285d7d4f0..7c8f730d6 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_microphone_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_microphone_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_microphone_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own microphone property."); check_readonly(deviceCapabilities, "microphone", deviceCapabilities.microphone, "boolean", null); -}, "SystemInfoDeviceCapability_microphone_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_multiTouchCount_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_multiTouchCount_attribute.html index 9f53cfe84..863ea10ec 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_multiTouchCount_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_multiTouchCount_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_multiTouchCount_attribute - +
@@ -41,7 +41,7 @@ test(function () { check_readonly(deviceCapabilities, "multiTouchCount", deviceCapabilities.multiTouchCount, "number", null); assert_true(deviceCapabilities.multiTouchCount > 0, "multiTouchCount check"); -}, "SystemInfoDeviceCapability_multiTouchCount_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeApiVersion_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeApiVersion_attribute.html index 10d49abcd..1c9a75c3b 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeApiVersion_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeApiVersion_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_nativeApiVersion_attribute - +
@@ -43,7 +43,7 @@ test(function () { assert_true(deviceCapabilities.nativeApiVersion !== "", "null check"); assert_equals(deviceCapabilities.nativeApiVersion, "2.2", "nativeApiVersion is not 2.2"); -}, "SystemInfoDeviceCapability_nativeApiVersion_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeOspCompatible_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeOspCompatible_attribute.html index 9bdac5644..e714b5a23 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeOspCompatible_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nativeOspCompatible_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_nativeOspCompatible_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own nativeOspCompatible property."); check_readonly(deviceCapabilities, "nativeOspCompatible", deviceCapabilities.nativeOspCompatible, "boolean", null); -}, "SystemInfoDeviceCapability_nativeOspCompatible_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfcReservedPush_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfcReservedPush_attribute.html index 6c6041662..0dee43cdf 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfcReservedPush_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfcReservedPush_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_nfcReservedPush_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own nfcReservedPush property."); check_readonly(deviceCapabilities, "nfcReservedPush", deviceCapabilities.nfcReservedPush, "boolean", null); -}, "SystemInfoDeviceCapability_nfcReservedPush_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_attribute.html index f4a456397..609a0ce91 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_nfc_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own nfc property."); check_readonly(deviceCapabilities, "nfc", deviceCapabilities.nfc, "boolean", null); -}, "SystemInfoDeviceCapability_nfc_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_dependency.html index 9d00c3052..693870e4f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_nfc_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_nfc_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.nfc* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_nfc_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_notexist.html index 89f8f50b5..cd24ea47b 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoDeviceCapability"); -}, "SystemInfoDeviceCapability_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion1_1_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion1_1_attribute.html index 5e21ffff7..b03014b20 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion1_1_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion1_1_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_openglesVersion1_1_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own openglesVersion1_1 property."); check_readonly(deviceCapabilities, "openglesVersion1_1", deviceCapabilities.openglesVersion1_1, "boolean", null); -}, "SystemInfoDeviceCapability_openglesVersion1_1_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion2_0_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion2_0_attribute.html index ccbe4da95..035caf485 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion2_0_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion2_0_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_openglesVersion2_0_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own openglesVersion2_0 property."); check_readonly(deviceCapabilities, "openglesVersion2_0", deviceCapabilities.openglesVersion2_0, "boolean", null); -}, "SystemInfoDeviceCapability_openglesVersion2_0_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion_dependency.html index fb59048fa..10fc92cae 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglesVersion_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_openglesVersion_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.openglesVersion* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -57,7 +57,8 @@ test(function () { info.opengles === false && info.openglesVersion1_1 === false && info.openglesVersion2_0 === true, "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_openglesVersion_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_opengles_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_opengles_attribute.html index 90d9b40c9..bb16a2f4e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_opengles_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_opengles_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_opengles_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own opengles property."); check_readonly(deviceCapabilities, "opengles", deviceCapabilities.opengles, "boolean", null); -}, "SystemInfoDeviceCapability_opengles_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_attribute.html index 8f862a6b9..af16e8b8e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_openglestextureFormat_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own openglestextureFormat property."); check_readonly(deviceCapabilities, "openglestextureFormat", deviceCapabilities.openglestextureFormat, "string", null); -}, "SystemInfoDeviceCapability_openglestextureFormat_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_dependency.html index 260c640ed..5c30cf290 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_openglestextureFormat_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_openglestextureFormat_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency on SystemInfoDeviceCapability.openglestextureFormat attribute //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_openglestextureFormat_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometerWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometerWakeup_attribute.html index 4960589f0..ce8e3e295 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometerWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometerWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_photometerWakeup_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own photometerWakeup property."); check_readonly(deviceCapabilities, "photometerWakeup", deviceCapabilities.photometerWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_photometerWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_attribute.html index 68b6679b7..bc739aaa7 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_photometer_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own photometer property."); check_readonly(deviceCapabilities, "photometer", deviceCapabilities.photometer, "boolean", null); -}, "SystemInfoDeviceCapability_photometer_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_dependency.html index e66e858f7..5b24cf17a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_photometer_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_photometer_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.photometer* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_photometer_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreCpuArch_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreCpuArch_attribute.html index e2785f377..aa9299b33 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreCpuArch_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreCpuArch_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_platformCoreCpuArch_attribute - + @@ -44,7 +44,7 @@ test(function () { assert_true(deviceCapabilities.platformCoreCpuArch !== "", "null check"); assert_in_array(deviceCapabilities.platformCoreCpuArch, PLATFROM_CORE_CPU_ARCH, "platformCoreFpuArch isn't value of PlatformCoreFpuArch"); -}, "SystemInfoDeviceCapability_platformCoreCpuArch_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreFpuArch_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreFpuArch_attribute.html index d72537617..acff6674e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreFpuArch_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformCoreFpuArch_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_platformCoreFpuArch_attribute - + @@ -44,7 +44,7 @@ test(function () { assert_true(deviceCapabilities.platformCoreFpuArch !== "", "null check"); assert_in_array(deviceCapabilities.platformCoreFpuArch, PLATFROM_CORE_FPU_ARCH, "platformCoreFpuArch isn't value of PlatformCoreFpuArch"); -}, "SystemInfoDeviceCapability_platformCoreFpuArch_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformName_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformName_attribute.html index b63474cf5..27d1078dc 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformName_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformName_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_platformName_attribute - +
@@ -43,7 +43,7 @@ test(function () { assert_true(deviceCapabilities.platformName !== "", "null check"); assert_equals(deviceCapabilities.platformName, "Tizen", "platformName is not Tizen"); -}, "SystemInfoDeviceCapability_platformName_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformVersion_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformVersion_attribute.html index 34bbf8ec1..5af2b5ce2 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformVersion_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_platformVersion_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_platformVersion_attribute - +
@@ -42,7 +42,7 @@ test(function () { deviceCapabilities.platformVersion, "string", null); assert_true(deviceCapabilities.platformVersion !== "", "null check"); assert_regexp_match(deviceCapabilities.platformVersion, /2\.2\.[0-9]+/, "platformVersion has a bad value"); -}, "SystemInfoDeviceCapability_platformVersion_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_profile_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_profile_attribute.html index ac49fc5fc..0459e33a3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_profile_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_profile_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_profile_attribute - + @@ -43,7 +43,7 @@ test(function () { "string", null); assert_in_array(deviceCapabilities.profile, SYSTEM_INFO_PROFILE, "profile isn't type of SystemInfoProfile"); -}, "SystemInfoDeviceCapability_profile_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximityWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximityWakeup_attribute.html index 9470fa6f5..19c555eca 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximityWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximityWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_proximityWakeup_attribute - + @@ -39,7 +39,7 @@ test(function () { "SystemInfoDeviceCapability does not own proximityWakeup property."); check_readonly(deviceCapabilities, "proximityWakeup", deviceCapabilities.proximityWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_proximityWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_attribute.html index 4eb22793f..2ee4c77e6 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_proximity_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own proximity property."); check_readonly(deviceCapabilities, "proximity", deviceCapabilities.proximity, "boolean", null); -}, "SystemInfoDeviceCapability_proximity_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_dependency.html index 5220213fd..cb0bc42ff 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_proximity_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_proximity_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.proximity* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_proximity_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_push_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_push_attribute.html index c7c05cb99..09f0ca885 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_push_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_push_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_push_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own push property."); check_readonly(deviceCapabilities, "push", deviceCapabilities.push, "boolean", null); -}, "SystemInfoDeviceCapability_push_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputHdmi_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputHdmi_attribute.html index d8fb3dc84..8e773be12 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputHdmi_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputHdmi_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_screenOutputHdmi_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own screenOutputHdmi property."); check_readonly(deviceCapabilities, "screenOutputHdmi", deviceCapabilities.screenOutputHdmi, "boolean", null); -}, "SystemInfoDeviceCapability_screenOutputHdmi_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputRca_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputRca_attribute.html index e83dfc708..1064454bc 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputRca_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenOutputRca_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_screenOutputRca_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own screenOutputRca property."); check_readonly(deviceCapabilities, "screenOutputRca", deviceCapabilities.screenOutputRca, "boolean", null); -}, "SystemInfoDeviceCapability_screenOutputRca_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize480_800_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize480_800_attribute.html index 8d1cff1c9..f426d599c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize480_800_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize480_800_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_screenSize480_800_attribute - + @@ -39,7 +39,7 @@ test(function () { "SystemInfoDeviceCapability does not own screenSize480_800 property."); check_readonly(deviceCapabilities, "screenSize480_800", deviceCapabilities.screenSize480_800, "boolean", null); -}, "SystemInfoDeviceCapability_screenSize480_800_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize720_1280_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize720_1280_attribute.html index 5d25eb707..cedfee65f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize720_1280_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSize720_1280_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_screenSize720_1280_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own screenSize720_1280 property."); check_readonly(deviceCapabilities, "screenSize720_1280", deviceCapabilities.screenSize720_1280, "boolean", null); -}, "SystemInfoDeviceCapability_screenSize720_1280_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSizeNormal_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSizeNormal_attribute.html index 77253f62e..8e0c7a133 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSizeNormal_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_screenSizeNormal_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_screenSizeNormal_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own screenSizeNormal property."); check_readonly(deviceCapabilities, "screenSizeNormal", deviceCapabilities.screenSizeNormal, "boolean", null); -}, "SystemInfoDeviceCapability_screenSizeNormal_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_secureElement_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_secureElement_attribute.html index 14c977e43..5a302d9f8 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_secureElement_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_secureElement_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_secureElement_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own secureElement property."); check_readonly(deviceCapabilities, "secureElement", deviceCapabilities.secureElement, "boolean", null); -}, "SystemInfoDeviceCapability_secureElement_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_shellAppWidget_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_shellAppWidget_attribute.html index b64eb4266..8e1c189ec 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_shellAppWidget_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_shellAppWidget_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_shellAppWidget_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own shellAppWidget property."); check_readonly(deviceCapabilities, "shellAppWidget", deviceCapabilities.shellAppWidget, "boolean", null); -}, "SystemInfoDeviceCapability_shellAppWidget_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_sipVoip_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_sipVoip_attribute.html index cf0ea38c1..9b5376d7e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_sipVoip_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_sipVoip_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_sipVoip_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own sipVoip property."); check_readonly(deviceCapabilities, "sipVoip", deviceCapabilities.sipVoip, "boolean", null); -}, "SystemInfoDeviceCapability_sipVoip_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechRecognition_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechRecognition_attribute.html index 14f64754b..c40992452 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechRecognition_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechRecognition_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_speechRecognition_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own speechRecognition property."); check_readonly(deviceCapabilities, "speechRecognition", deviceCapabilities.speechRecognition, "boolean", null); -}, "SystemInfoDeviceCapability_speechRecognition_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechSynthesis_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechSynthesis_attribute.html index 3fbd6a15c..5ceb3f315 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechSynthesis_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_speechSynthesis_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_speechSynthesis_attribute - + @@ -39,7 +39,7 @@ test(function () { "SystemInfoDeviceCapability does not own speechSynthesis property."); check_readonly(deviceCapabilities, "speechSynthesis", deviceCapabilities.speechSynthesis, "boolean", null); -}, "SystemInfoDeviceCapability_speechSynthesis_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonyMms_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonyMms_attribute.html index 799863828..2986ad30d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonyMms_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonyMms_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_telephonyMms_attribute - + @@ -43,7 +43,7 @@ test(function () { check_readonly(deviceCapabilities, "telephonyMms", deviceCapabilities.telephonyMms, "boolean", null); -}, "SystemInfoDeviceCapability_telephonyMms_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonySms_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonySms_attribute.html index 81c73e700..849328885 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonySms_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephonySms_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_telephonySms_attribute - + @@ -43,7 +43,7 @@ test(function () { check_readonly(deviceCapabilities, "telephonySms", deviceCapabilities.telephonySms, "boolean", null); -}, "SystemInfoDeviceCapability_telephonySms_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_attribute.html index 1809cf94b..98d4c7d11 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_telephony_attribute - + @@ -43,7 +43,7 @@ test(function () { check_readonly(deviceCapabilities, "telephony", deviceCapabilities.telephony, "boolean", null); -}, "SystemInfoDeviceCapability_telephony_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_dependency.html index b8a9bf541..46e5de493 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_telephony_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_telephony_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.telephony* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -62,7 +62,8 @@ test(function () { info.telephony === false && info.telephonyMms === false && info.telephonySms === true, "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_telephony_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeterWakeup_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeterWakeup_attribute.html index 5db0fc38b..db3202e75 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeterWakeup_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeterWakeup_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_tiltmeterWakeup_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own tiltmeterWakeup property."); check_readonly(deviceCapabilities, "tiltmeterWakeup", deviceCapabilities.tiltmeterWakeup, "boolean", null); -}, "SystemInfoDeviceCapability_tiltmeterWakeup_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_attribute.html index 8780dd41e..e22ce7cac 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_tiltmeter_attribute - + @@ -43,7 +43,7 @@ test(function () { check_readonly(deviceCapabilities, "tiltmeter", deviceCapabilities.tiltmeter, "boolean", null); -}, "SystemInfoDeviceCapability_tiltmeter_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_dependency.html index 5835cc3b5..8b8143837 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_tiltmeter_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_tiltmeter_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.tiltmeter* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_tiltmeter_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbAccessory_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbAccessory_attribute.html index e365674e3..b2f51f4c2 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbAccessory_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbAccessory_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_usbAccessory_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own usbAccessory property."); check_readonly(deviceCapabilities, "usbAccessory", deviceCapabilities.usbAccessory, "boolean", null); -}, "SystemInfoDeviceCapability_usbAccessory_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbHost_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbHost_attribute.html index 1d02dbfc3..f36baeee6 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbHost_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_usbHost_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_usbHost_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own usbHost property."); check_readonly(deviceCapabilities, "usbHost", deviceCapabilities.usbHost, "boolean", null); -}, "SystemInfoDeviceCapability_usbHost_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionFaceRecognition_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionFaceRecognition_attribute.html index 0f6b12d0a..f046f18be 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionFaceRecognition_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionFaceRecognition_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_visionFaceRecognition_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own visionFaceRecognition property."); check_readonly(deviceCapabilities, "visionFaceRecognition", deviceCapabilities.visionFaceRecognition, "boolean", null); -}, "SystemInfoDeviceCapability_visionFaceRecognition_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionImageRecognition_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionImageRecognition_attribute.html index 3f98f7ae3..2dee17d06 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionImageRecognition_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionImageRecognition_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_visionImageRecognition_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own visionImageRecognition property."); check_readonly(deviceCapabilities, "visionImageRecognition", deviceCapabilities.visionImageRecognition, "boolean", null); -}, "SystemInfoDeviceCapability_visionImageRecognition_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeGeneration_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeGeneration_attribute.html index 79d414c07..32beb267a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeGeneration_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeGeneration_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_visionQrcodeGeneration_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own visionQrcodeGeneration property."); check_readonly(deviceCapabilities, "visionQrcodeGeneration", deviceCapabilities.visionQrcodeGeneration, "boolean", null); -}, "SystemInfoDeviceCapability_visionQrcodeGeneration_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeRecognition_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeRecognition_attribute.html index ab38e5ea9..533d9c0c2 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeRecognition_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeRecognition_attribute.html @@ -21,7 +21,7 @@ Authors: SystemInfoDeviceCapability_visionQrcodeRecognition_attribute - +
@@ -38,7 +38,7 @@ test(function () { "SystemInfoDeviceCapability does not own visionQrcodeRecognition property."); check_readonly(deviceCapabilities, "visionQrcodeRecognition", deviceCapabilities.visionQrcodeRecognition, "boolean", null); -}, "SystemInfoDeviceCapability_visionQrcodeRecognition_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_webApiVersion_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_webApiVersion_attribute.html index bad7d6406..12183976c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_webApiVersion_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_webApiVersion_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_webApiVersion_attribute - +
@@ -43,7 +43,7 @@ test(function () { assert_true(deviceCapabilities.webApiVersion !== "", "null check"); assert_equals(deviceCapabilities.webApiVersion, "2.2", "webApiVersion is not 2.2"); -}, "SystemInfoDeviceCapability_webApiVersion_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifiDirect_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifiDirect_attribute.html index 76656959e..e8a0cf1a4 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifiDirect_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifiDirect_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_wifiDirect_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own wifiDirect property."); check_readonly(deviceCapabilities, "wifiDirect", deviceCapabilities.wifiDirect, "boolean", null); -}, "SystemInfoDeviceCapability_wifiDirect_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_attribute.html index 88ee707e8..960a1d381 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceCapability_wifi_attribute - +
@@ -40,7 +40,7 @@ test(function () { "SystemInfoDeviceCapability does not own wifi property."); check_readonly(deviceCapabilities, "wifi", deviceCapabilities.wifi, "boolean", null); -}, "SystemInfoDeviceCapability_wifi_attribute"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_dependency.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_dependency.html index ed27259d7..5c71559e0 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_dependency.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_wifi_dependency.html @@ -16,14 +16,14 @@ limitations under the License. Authors: - Andrzej Krolikowski + Andrzej Krolikowski --> - + SystemInfoDeviceCapability_wifi_dependency - +
@@ -32,7 +32,7 @@ Authors: //==== LABEL Check invalid dependency between SystemInfoDeviceCapability.wifi* attributes //==== PRIORITY P3 //==== SPEC Tizen Web API:System:SystemInfo:SystemInfoDeviceCapability:SystemInfoDeviceCapability U -//==== SPEC_URL https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA test(function () { @@ -43,7 +43,8 @@ test(function () { "invalid dependency between capabilities" ); -}, "SystemInfoDeviceCapability_wifi_dependency"); +}, document.title); + diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_extend.html index 57f52a8cc..1f82b1d67 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceOrientation_extend - +
@@ -37,7 +37,7 @@ Authors: //==== PRIORITY P3 setup({timeout: 90000}); -var t = async_test("SystemInfoDeviceOrientation_extend", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("Exception : " + error.message); + assert_unreached("Exception: " + error.message); }); tizen.systeminfo.getPropertyValue("DEVICE_ORIENTATION", diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_isAutoRotation_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_isAutoRotation_attribute.html index c219b0f69..f3a4c2afc 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_isAutoRotation_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_isAutoRotation_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceOrientation_isAutoRotation_attribute - + @@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDeviceOrientation_isAutoRotation_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -50,7 +50,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_notexist.html index 18d9eb874..82d340391 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceOrientation_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoDeviceOrientation"); -}, "SystemInfoDeviceOrientation_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_status_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_status_attribute.html index 91fe76fdc..3087c8957 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_status_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_status_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDeviceOrientation_status_attribute - + @@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDeviceOrientation_status_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -50,7 +50,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_brightness_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_brightness_attribute.html index f38cabbac..6d569dcaf 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_brightness_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_brightness_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_brightness_attribute - + @@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_brightness_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -51,7 +51,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_constructor_display.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_constructor_display.html index 2c42bbed1..9e615fd5a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_constructor_display.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_constructor_display.html @@ -25,21 +25,21 @@ Authors: SystemInfoDisplay_constructor_display - +
+
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_dotsPerInchHeight_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_dotsPerInchWidth_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_dotsPerInchWidth_attribute.html index 4ad571f4c..3baf60731 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_dotsPerInchWidth_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_dotsPerInchWidth_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_dotsPerInchWidth_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_dotsPerInchWidth_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_extend.html index 34c6ed234..75536a48a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_notexist.html index afde58388..0dbfadf30 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoDisplay"); -}, "SystemInfoDisplay_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalHeight_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalHeight_attribute.html index c50ae380f..a3319c785 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalHeight_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalHeight_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_physicalHeight_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_physicalHeight_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalWidth_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalWidth_attribute.html index 9be8422ad..070bdf136 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalWidth_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_physicalWidth_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_physicalWidth_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_physicalWidth_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionHeight_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionHeight_attribute.html index 6fa596f17..4b51a372b 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionHeight_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionHeight_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_resolutionHeight_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_resolutionHeight_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionWidth_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionWidth_attribute.html index 10b554f91..a9ff93ef3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionWidth_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_resolutionWidth_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoDisplay_resolutionWidth_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoDisplay_resolutionWidth_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_country_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_country_attribute.html index bc837bb74..10c66c431 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_country_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_country_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoLocale_country_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoLocale_country_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -47,7 +47,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_extend.html index e8e77343b..15624515c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoLocale_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoLocale_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_language_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_language_attribute.html index 150c0193f..a7113c8b9 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_language_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_language_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoLocale_language_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoLocale_language_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -47,7 +47,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_notexist.html index 0e6d1fc44..6231be25f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoLocale_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoLocale_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoLocale"); -}, "SystemInfoLocale_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_extend.html index d63c6ea46..1f171d12e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoNetwork_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoNetwork_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_networkType_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_networkType_attribute.html index 7340f93d6..1f04b7f7f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_networkType_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_networkType_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoNetwork_networkType_attribute - + @@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoNetwork_networkType_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -52,7 +52,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_notexist.html index 7b9f4ed83..530f8badf 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoNetwork_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoNetwork_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoNetwork"); -}, "SystemInfoNetwork_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoObject_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoObject_notexist.html index 9b99938b3..6d1d8e45d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoObject_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoObject_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoObject_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoObject"); -}, "SystemInfoObject_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_extend.html index 9e11dc243..f17533b9c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoPeripheral_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoPeripheral_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_isVideoOutputOn_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_isVideoOutputOn_attribute.html index 26e4625cf..355cb783e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_isVideoOutputOn_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_isVideoOutputOn_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoPeripheral_isVideoOutputOn_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoPeripheral_isVideoOutputOn_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_notexist.html index 2b47d44dc..aaabd8462 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPeripheral_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoPeripheral_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoPeripheral"); -}, "SystemInfoPeripheral_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_notexist.html index d80788c69..2118b3b4f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoPropertySuccessCallback_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoPropertySuccessCallback"); -}, "SystemInfoPropertySuccessCallback_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess.html index 3a31576af..fa9f7fec2 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess.html @@ -24,7 +24,7 @@ Authors: SystemInfoPropertySuccessCallback_onsuccess - +
@@ -39,7 +39,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoPropertySuccessCallback_onsuccess", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (value) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Battery.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Battery.html index 0096825b8..dfcbec54d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Battery.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Battery.html @@ -25,22 +25,22 @@ Authors: SystemInfoPropertySuccessCallback_onsuccess_Battery - +
+
+
+
+
+
+
+
+
+
+ @@ -33,15 +33,15 @@ Authors: +
+
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoProperty"); -}, "SystemInfoProperty_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_extend.html index 888d2ee6d..fa97e6d1c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_extend - + @@ -38,7 +38,7 @@ Authors: //==== TEST_CRITERIA OBX setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_extend", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -48,7 +48,7 @@ t.step(function () { }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_iccid_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_iccid_attribute.html index ca1981190..d4b96723a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_iccid_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_iccid_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_iccid_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_iccid_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mcc_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mcc_attribute.html index d2cd4107f..910444da0 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mcc_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mcc_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_mcc_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_mcc_attribute", {timeout: 90000}), getPropertyValueSuccess, +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mnc_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mnc_attribute.html index c7b3a2766..fb835c33f 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mnc_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_mnc_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_mnc_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_mnc_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msin_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msin_attribute.html index 7034a502c..b43591bb0 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msin_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msin_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_msin_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_msin_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -47,7 +47,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msisdn_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msisdn_attribute.html index 3ffc3058c..b5bef1797 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msisdn_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_msisdn_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_msisdn_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_msisdn_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_notexist.html index 80223dfd1..8377c6d6c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_notexist - + @@ -38,7 +38,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoSIM"); -}, "SystemInfoSIM_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_operatorName_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_operatorName_attribute.html index b62e8e58b..52e35d0d8 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_operatorName_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_operatorName_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_operatorName_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_operatorName_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_spn_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_spn_attribute.html index 1dc39eeab..dc398196d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_spn_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_spn_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_spn_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_spn_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -47,7 +47,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_state_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_state_attribute.html index e5663252f..57a841645 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_state_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoSIM_state_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoSIM_state_attribute - + @@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoSIM_state_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -49,7 +49,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_availableCapacity_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_availableCapacity_attribute.html index b3efac75a..e93eeecc7 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_availableCapacity_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_availableCapacity_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_availableCapacity_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorageUnit_availableCapacity_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -50,7 +50,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_capacity_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_capacity_attribute.html index 275237878..5d82143e5 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_capacity_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_capacity_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_capacity_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorageUnit_capacity_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -52,7 +52,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_extend.html index 030ab1a0c..52aa8f8c1 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorageUnit_extend", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -50,7 +50,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemovable_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemovable_attribute.html index 5e38cdbe8..9e42a5674 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemovable_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemovable_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_isRemovable_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorageUnit_isRemovable_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -50,7 +50,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemoveable_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemoveable_attribute.html index 52f9b87a7..057295da4 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemoveable_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_isRemoveable_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_isRemoveable_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorageUnit_isRemoveable_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -50,7 +50,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_notexist.html index 954855c00..1765e2365 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_notexist - + @@ -39,7 +39,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoStorageUnit"); -}, "SystemInfoStorageUnit_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_type_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_type_attribute.html index dc7191b89..93be2d405 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_type_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorageUnit_type_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorageUnit_type_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorageUnit_type_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -51,7 +51,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (e) { - assert_unreached("Exception : " + e.message); + assert_unreached("Exception: " + e.message); }); tizen.systeminfo.getPropertyValue("STORAGE", getPropertyValueSuccess, diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_extend.html index a70872900..495aefcfe 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorage_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoStorage_extend", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_notexist.html index 507f4e163..a01e5eeed 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorage_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoStorage"); -}, "SystemInfoStorage_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_units_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_units_attribute.html index 25736ac4d..92b3b7e7a 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_units_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoStorage_units_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoStorage_units_attribute - + @@ -36,7 +36,7 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA AE AT ARO //==== ONLOAD_DELAY 90 -var t = async_test("SystemInfoStorage_units_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError, i, j, units; setup({timeout: 90000}); t.step(function () { @@ -68,7 +68,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_extend.html index f233eccb2..3d7434254 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_extend - +
@@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoWifiNetwork_extend", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipAddress_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipAddress_attribute.html index c391d4556..8c17af086 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipAddress_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipAddress_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_ipAddress_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoWifiNetwork_ipAddress_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipv6Address_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipv6Address_attribute.html index 79153e523..462d7b887 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipv6Address_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ipv6Address_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_ipv6Address_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoWifiNetwork_ipv6Address_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_notexist.html index 4deef7efb..d14b9c845 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_notexist - +
@@ -38,7 +38,7 @@ Authors: test(function () { check_no_interface_object("SystemInfoWifiNetwork"); -}, "SystemInfoWifiNetwork_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_signalStrength_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_signalStrength_attribute.html index 3cb9845a5..a53a24d00 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_signalStrength_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_signalStrength_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_signalStrength_attribute - + @@ -38,7 +38,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoWifiNetwork_signalStrength_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -48,7 +48,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ssid_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ssid_attribute.html index cbff592f3..2cd0263a8 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ssid_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_ssid_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_ssid_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoWifiNetwork_ssid_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -46,7 +46,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_status_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_status_attribute.html index 3d992de4f..85608e854 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_status_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfoWifiNetwork_status_attribute.html @@ -23,7 +23,7 @@ Authors: SystemInfoWifiNetwork_status_attribute - +
@@ -37,7 +37,7 @@ Authors: setup({timeout: 90000}); -var t = async_test("SystemInfoWifiNetwork_status_attribute", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { getPropertyValueSuccess = t.step_func(function (property) { @@ -49,7 +49,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name: " + + assert_unreached("getPropertyValue() error callback invoked: name: " + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_SystemInfoObject_systeminfo_attribute.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_SystemInfoObject_systeminfo_attribute.html index 813fddee8..d776d1b0b 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_SystemInfoObject_systeminfo_attribute.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_SystemInfoObject_systeminfo_attribute.html @@ -25,14 +25,14 @@ Authors: SystemInfo_SystemInfoObject_systeminfo_attribute - +
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener.html index 1706f5ba6..b2fcb87eb 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener.html @@ -23,7 +23,7 @@ Authors: SystemInfo_addPropertyValueChangeListener - + @@ -36,14 +36,14 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA MMINA MAST MR //==== ONLOAD_DELAY 90 -var t = async_test("SystemInfo_addPropertyValueChangeListener", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), addPropertyValueChangeListenerSuccess, addPropertyValueChangeListenerError, retValue = null; setup({timeout: 90000}); t.step(function () { addPropertyValueChangeListenerError = t.step_func(function (error) { - assert_unreached("addPropertyValueChangeListener() error callback invoked : name:" + error.name + ", msg:" + error.message); + assert_unreached("addPropertyValueChangeListener() error callback invoked: name:" + error.name + ", msg:" + error.message); }); addPropertyValueChangeListenerSuccess = t.step_func(function (property) { diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_exist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_exist.html index eab64e5bd..57222d107 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_exist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_exist.html @@ -35,13 +35,13 @@ Authors: SystemInfo_addPropertyValueChangeListener_exist - +
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_missarg.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_missarg.html index 37db1e488..be1a1fb5e 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_missarg.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_missarg.html @@ -22,7 +22,7 @@ Authors: SystemInfo_addPropertyValueChangeListener_missarg - +
@@ -33,11 +33,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA MMA test(function () { - assert_throws({ name: "TypeMismatchError" }, + assert_throws(TYPE_MISMATCH_EXCEPTION, function () { tizen.systeminfo.addPropertyValueChangeListener(); }, "Calling addPropertyValueChangeListener without arguments should throw an exception."); -}, "SystemInfo_addPropertyValueChangeListener_missarg"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_options_TypeMismatch.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_options_TypeMismatch.html index 5d3591181..b54696843 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_options_TypeMismatch.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_options_TypeMismatch.html @@ -24,14 +24,14 @@ Authors: SystemInfo_addPropertyValueChangeListener_options_TypeMismatch - +
+
+
+
@@ -40,7 +40,7 @@ Authors: //==== TEST_CRITERIA MC setup({timeout: 90000}); -var t = async_test("SystemInfo_addPropertyValueChangeListener_successCallback_TypeMismatch", {timeout: 90000}), addPropertyValueChangeListenerSuccess, exceptionName, i, conversionTable; +var t = async_test(document.title, {timeout: 90000}), addPropertyValueChangeListenerSuccess, exceptionName, i, conversionTable; t.step(function () { conversionTable = getTypeConversionExceptions("functionObject", false); @@ -49,7 +49,7 @@ t.step(function () { addPropertyValueChangeListenerSuccess = conversionTable[i][0]; exceptionName = conversionTable[i][1]; - assert_throws({name : exceptionName}, + assert_throws({name: exceptionName}, function () { tizen.systeminfo.addPropertyValueChangeListener("STORAGE", addPropertyValueChangeListenerSuccess); }, exceptionName + " should be thrown - given incorrect success callback."); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb.html index a9a8e493e..243741865 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb.html @@ -22,7 +22,7 @@ Authors: SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb - +
@@ -36,7 +36,7 @@ Authors: //==== ONLOAD_DELAY 90 setup({timeout: 90000}); -var t = async_test("SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb", +var t = async_test(document.title, {timeout: 90000}), addPropertyValueChangeListenerSuccess, exceptionName = "TypeMismatchError"; t.step(function () { addPropertyValueChangeListenerSuccess = { diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_missarg.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_missarg.html index a47f2d98b..004b95610 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_missarg.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_missarg.html @@ -23,14 +23,14 @@ Authors: SystemInfo_addPropertyValueChangeListener_successCallback_missarg - +
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_with_options.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_with_options.html index fca717431..a6c78ad89 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_with_options.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_with_options.html @@ -23,7 +23,7 @@ Authors: SystemInfo_addPropertyValueChangeListener_with_options - + @@ -35,7 +35,7 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA MOA MAST //==== ONLOAD_DELAY 90 -var t = async_test("SystemInfo_addPropertyValueChangeListener_with_options", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), addPropertyValueChangeListenerSuccess, lId; setup({timeout: 90000}); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_extend.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_extend.html index 8da0cda86..9cf79307c 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_extend.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_extend.html @@ -23,7 +23,7 @@ Authors: SystemInfo_extend - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_extensibility(tizen.systeminfo); -}, "SystemInfo_extend"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities.html index 0417846ef..97e0fb0c3 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities.html @@ -23,7 +23,7 @@ Authors: SystemInfo_getCapabilities - + @@ -42,7 +42,7 @@ test(function () { "There is no "+SystemInfoDeviceCapability[i]+ " attribute in tizen.systeminfo.getCapabilities()."); } -}, "SystemInfo_getCapabilities"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_exist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_exist.html index 3fe8eeac5..af4cb33c4 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_exist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_exist.html @@ -23,20 +23,20 @@ Authors: SystemInfo_getCapabilities_exist - +
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_extra_argument.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_extra_argument.html index 6823d5977..cf744a5c9 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_extra_argument.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_extra_argument.html @@ -23,7 +23,7 @@ Authors: SystemInfo_getCapabilities_extra_argument - +
@@ -36,7 +36,7 @@ Authors: test(function () { checkExtraArgument(tizen.systeminfo, "getCapabilities"); -}, "SystemInfo_getCapabilities_extra_argument"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue.html index aa101bd52..5d8b1bb52 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue.html @@ -48,7 +48,7 @@ Authors: //==== TEST_CRITERIA MMINA MR setup({timeout: 90000}); -var t = async_test("SystemInfo_getPropertyValue", {timeout: 90000}), getPropertyValueSuccess, retValue = null; +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, retValue = null; t.step(function () { getPropertyValueSuccess = t.step_func(function (battery) { diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_TypeMismatch.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_TypeMismatch.html index 2ea7563e3..b70891237 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_TypeMismatch.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_TypeMismatch.html @@ -22,7 +22,7 @@ Authors: SystemInfo_getPropertyValue_errorCallback_TypeMismatch - +
@@ -36,7 +36,7 @@ Authors: //==== TEST_CRITERIA MC setup({timeout: 90000}); -var t = async_test("SystemInfo_getPropertyValue_errorCallback_TypeMismatch", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), conversionTable, getPropertyValueSuccess, getPropertyValueError, exceptionName, i; t.step(function () { diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_invalid_cb.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_invalid_cb.html index 86d6a7da6..89ef6f586 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_invalid_cb.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_invalid_cb.html @@ -22,7 +22,7 @@ Authors: SystemInfo_getPropertyValue_errorCallback_invalid_cb - + @@ -37,12 +37,12 @@ Authors: //==== TEST_CRITERIA MTCB setup({timeout: 90000}); -var t = async_test("SystemInfo_getPropertyValue_errorCallback_invalid_cb", {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError, i; +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError, i; t.step(function () { getPropertyValueError = { onerror: t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name:" + + assert_unreached("getPropertyValue() error callback invoked: name:" + error.name + ", msg: " + error.message); }) }; @@ -50,7 +50,7 @@ t.step(function () { assert_unreached("Unexpected successCallback"); }); for (i = 0; i < systemInfoPropertyId.length; i++) { - assert_throws(TYPE_MISMATCH_ERR, + assert_throws(TYPE_MISMATCH_EXCEPTION, function () { tizen.systeminfo.getPropertyValue(systemInfoPropertyId[i], getPropertyValueSuccess, getPropertyValueError); }, TYPE_MISMATCH_ERR + " should be thrown"); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_exist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_exist.html index 3ab6ab498..15c318d81 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_exist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_exist.html @@ -35,20 +35,20 @@ Authors: SystemInfo_getPropertyValue_exist - +
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_missarg.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_missarg.html index 848df0e58..5a4045257 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_missarg.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_missarg.html @@ -22,7 +22,7 @@ Authors: SystemInfo_getPropertyValue_missarg - + @@ -34,11 +34,11 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA MMA test(function () { - assert_throws( TYPE_MISMATCH_ERR, + assert_throws( TYPE_MISMATCH_EXCEPTION, function () { tizen.systeminfo.getPropertyValue(); }, TYPE_MISMATCH_ERR + " should be thrown"); -}); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_property_TypeMismatch.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_property_TypeMismatch.html index 569f40c88..dd0f20cf6 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_property_TypeMismatch.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_property_TypeMismatch.html @@ -24,13 +24,13 @@ Authors: SystemInfo_getPropertyValue_property_TypeMismatch - +
+
@@ -39,12 +39,12 @@ Authors: //==== TEST_CRITERIA MC setup({timeout: 90000}); -var t = async_test("SystemInfo_getPropertyValue_successCallback_TypeMismatch", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, exceptionName, getPropertyValueError, i, conversionTable; t.step(function () { getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name:" + + assert_unreached("getPropertyValue() error callback invoked: name:" + error.name + ", msg: " + error.message); }); @@ -54,7 +54,7 @@ t.step(function () { getPropertyValueSuccess = conversionTable[i][0]; exceptionName = conversionTable[i][1]; - assert_throws({name : exceptionName}, + assert_throws({name: exceptionName}, function () { tizen.systeminfo.getPropertyValue("STORAGE", getPropertyValueSuccess, getPropertyValueError); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_invalid_cb.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_invalid_cb.html index 0f547ec0e..0c6146d34 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_invalid_cb.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_invalid_cb.html @@ -22,13 +22,13 @@ Authors: SystemInfo_getPropertyValue_successCallback_invalid_cb - +
+ @@ -33,7 +33,7 @@ Authors:
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_with_errorCallback.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_with_errorCallback.html index 9bfccc5c4..41e3ce58d 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_with_errorCallback.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_with_errorCallback.html @@ -48,7 +48,7 @@ Authors: //==== TEST_CRITERIA MOA setup({timeout: 90000}); -var t = async_test("SystemInfo_getPropertyValue_with_errorCallback", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), getPropertyValueSuccess, getPropertyValueError; t.step(function () { @@ -57,7 +57,7 @@ t.step(function () { t.done(); }); getPropertyValueError = t.step_func(function (error) { - assert_unreached("getPropertyValue() error callback invoked : name:" + + assert_unreached("getPropertyValue() error callback invoked: name:" + error.name + ", msg: " + error.message); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_in_tizen.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_in_tizen.html index 99aa3a3d2..5b8f5b7df 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_in_tizen.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_in_tizen.html @@ -23,7 +23,7 @@ Authors: SystemInfo_in_tizen - +
@@ -37,7 +37,7 @@ Authors: test(function () { assert_true("systeminfo" in tizen, "No systeminfo in tizen."); check_readonly(tizen, "systeminfo", tizen.systeminfo, "object", "dummyValue"); -}, "SystemInfo_in_tizen"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_notexist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_notexist.html index 559646e75..e88cfebbe 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_notexist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_notexist.html @@ -23,7 +23,7 @@ Authors: SystemInfo_notexist - +
@@ -37,7 +37,7 @@ Authors: test(function () { check_no_interface_object("SystemInfo"); -}, "SystemInfo_notexist"); +}, document.title); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener.html index 42a803ed8..6da937200 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener.html @@ -23,7 +23,7 @@ Authors: SystemInfo_removePropertyValueChangeListener - + @@ -36,7 +36,7 @@ Authors: //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html //==== TEST_CRITERIA MMINA MAST MR setup({timeout: 90000}); -var t = async_test("SystemInfo_removePropertyValueChangeListener", {timeout: 90000}), +var t = async_test(document.title, {timeout: 90000}), addPropertyValueChangeListenerSuccess, lId, retValue = null; t.step(function () { @@ -50,7 +50,7 @@ t.step(function () { assert_equals(retValue, undefined, "removePropertyValueChangeListener returns wrong value"); t.done(); - }),3000); + }), 3000); }); diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_all_properties.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_all_properties.html index 418f49f37..a96d7bab4 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_all_properties.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_all_properties.html @@ -24,7 +24,7 @@ Authors: SystemInfo_removePropertyValueChangeListener_all_properties - + @@ -32,7 +32,7 @@ Authors:
diff --git a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_exist.html b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_exist.html index 83db5299e..a23bb6620 100644 --- a/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_exist.html +++ b/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_exist.html @@ -35,20 +35,20 @@ Authors: SystemInfo_removePropertyValueChangeListener_exist - +
diff --git a/tct-systeminfo-tizen-tests/systeminfo/support/unitcommon.js b/tct-systeminfo-tizen-tests/systeminfo/support/unitcommon.js new file mode 100644 index 000000000..9f972c1eb --- /dev/null +++ b/tct-systeminfo-tizen-tests/systeminfo/support/unitcommon.js @@ -0,0 +1,559 @@ +/* + +Copyright (c) 2013 Samsung Electronics Co., Ltd. + +Licensed under the Apache License, Version 2.0 (the License); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + + +Authors: + + */ + + +MIN_BYTE = -128; +MAX_BYTE = 127; +MIN_OCTET = 0; +MAX_OCTET = 255; +MIN_SHORT = -32768; +MAX_SHORT = 32767; +MIN_UNSIGNED_SHORT = 0; +MAX_UNSIGNED_SHORT = 65535; +MIN_LONG = -2147483648; +MAX_LONG = 2147483647; +MIN_UNSIGNED_LONG = 0; +MAX_UNSIGNED_LONG = 4294967295; +MIN_LONG_LONG = -9223372036854775808; +MAX_LONG_LONG = 9223372036854775807; +MIN_UNSIGNED_LONG_LONG = 0; +MAX_UNSIGNED_LONG_LONG = 18446744073709551615; + +TYPE_MISMATCH_EXCEPTION = {name: 'TypeMismatchError'}; +NOT_FOUND_EXCEPTION = {name: 'NotFoundError'}; +INVALID_VALUES_EXCEPTION = {name: 'InvalidValuesError'}; +IO_EXCEPTION = {name: 'IOError'}; +SECURITY_EXCEPTION = {name: 'SecurityError'}; + + +(function () { + var head_src = document.head.innerHTML; + if (head_src.search(/\/testharness.js\W/) === -1) { + document.write('\n'); + } + if (head_src.search(/\/testharnessreport.js\W/) === -1) { + document.write('\n'); + } +})(); + +var _registered_types = {}; + +function _resolve_registered_type(type) { + while (type in _registered_types) { + type = _registered_types[type]; + } + return type; +} + +/** + * Method checks extra argument for none argument method. + * The only check is that method will not throw an exception. + * Example usage: + * checkExtraArgument(tizen.notification, "removeAll"); + * + * @param object object + * @param methodName string - name of the method + */ +function checkExtraArgument(object, methodName) { + var extraArgument = [ + null, + undefined, + "Tizen", + 1, + false, + ["one", "two"], + {argument: 1}, + function () {} + ], i; + + for (i = 0; i < extraArgument.length; i++) { + object[methodName](extraArgument[i]); + } +} + +/** + * Method to validate conversion. + * Example usage: + * conversionTable = getTypeConversionExceptions("functionObject", true); + * for(i = 0; i < conversionTable.length; i++) { + * errorCallback = conversionTable[i][0]; + * exceptionName = conversionTable[i][1]; + * + * assert_throws({name : exceptionName}, + * function () { + * tizen.systemsetting.setProperty("HOME_SCREEN", + * propertyValue, successCallback, errorCallback); + * }, exceptionName + " should be thrown - given incorrect errorCallback."); + * } + * + * @param conversionType + * @param isOptional + * @returns table of tables which contain value (index 0) and exceptionName (index 1) + * + */ +function getTypeConversionExceptions(conversionType, isOptional) { + var exceptionName = "TypeMismatchError", + conversionTable; + switch (conversionType) { + case "enum": + conversionTable = [ + [undefined, exceptionName], + [null, exceptionName], + [0, exceptionName], + [true, exceptionName], + ["dummyInvalidEnumValue", exceptionName], + [{ }, exceptionName] + ]; + break; + case "double": + conversionTable = [ + [undefined, exceptionName], + [NaN, exceptionName], + [Number.POSITIVE_INFINITY, exceptionName], + [Number.NEGATIVE_INFINITY, exceptionName], + ["TIZEN", exceptionName], + [{ name : "TIZEN" }, exceptionName], + [function () { }, exceptionName] + ]; + break; + case "object": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + case "functionObject": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [[], exceptionName], + [{ }, exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + case "array": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [{ }, exceptionName], + [function () { }, exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + case "dictionary": + conversionTable = [ + [true, exceptionName], + [false, exceptionName], + [NaN, exceptionName], + [0, exceptionName], + ["", exceptionName], + ["TIZEN", exceptionName], + [undefined, exceptionName] + ]; + if (!isOptional) { + conversionTable.push([null, exceptionName]); + } + break; + default: + assert_unreached("Fix your test. Wrong conversionType '" + conversionType + "'."); + }; + + return conversionTable; +} + + +function assert_type(obj, type, description) { + var org_type = type, prop_name, prop_type, prop_value; + + type = _resolve_registered_type(type); + + if (typeof (type) === 'string') { + type = type.toLowerCase(); + switch (type) { + case 'object': + case 'string': + case 'number': + case 'function': + case 'boolean': + case 'undefined': + case 'xml': + assert_equals(typeof (obj), type, description); + break; + case 'null': + assert_true(obj === null, description); + break; + case 'array': + assert_true(Array.isArray(obj), description); + break; + case 'date': + assert_true(obj instanceof Date, description); + break; + case 'byte': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_BYTE, description + " - value too low."); + assert_less_than_equal(obj, MAX_BYTE, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'octet': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_OCTET, description + " - value too low."); + assert_less_than_equal(obj, MAX_OCTET, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'short': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_SHORT, description + " - value too low."); + assert_less_than_equal(obj, MAX_SHORT, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'unsigned short': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_UNSIGNED_SHORT, description + " - value too low."); + assert_less_than_equal(obj, MAX_UNSIGNED_SHORT, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_LONG, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'unsigned long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_UNSIGNED_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_UNSIGNED_LONG, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + case 'long long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_LONG_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_LONG_LONG, description + " - value too high."); + assert_equals(Math.abs(obj % 1), 0, description + " - value is not an integer."); + break; + case 'unsigned long long': + assert_equals(typeof (obj), 'number', description); + assert_greater_than_equal(obj, MIN_UNSIGNED_LONG_LONG, description + " - value too low."); + assert_less_than_equal(obj, MAX_UNSIGNED_LONG_LONG, description + " - value too high."); + assert_equals(obj % 1, 0, description + " - value is not an integer."); + break; + default: + assert_unreached('Fix your test. Wrong type \'' + org_type + '\''); + } + } else if (typeof (type) === 'function') { + assert_true(obj instanceof type, description); + } else if (typeof (type) === 'object') { + for (prop_name in type) { + prop_type = type[prop_name]; + if (prop_type === 'function') { + assert_inherits(obj, prop_name); + assert_equals(typeof obj[prop_name], prop_type, 'Object should have method ' + prop_name); + } else { + assert_own_property(obj, prop_name); + } + } + } else { + assert_unreached('Fix your test. Wrong type ' + org_type); + } +} + +function register_type(alias, type_spec) { + _registered_types[alias] = type_spec; +} + +/** + * Method to check if attribute is const. + * Example usage: + * check_const(tizen.bluetooth.deviceMinor, 'TOY_DOLL', 0x03, 'number', 0x29B); + * + * @param obj object to test which has const attribute + * @param attributeName attribute name. + * @param expectedValue expected value of provided attribute name + * @param expectedType expected type of provided attribute name + * @param valueToAssign value to assign in order to check if attribute value can be modified + */ +function check_const(obj, attributeName, expectedValue, expectedType, valueToAssign) { + var tmp; + if (expectedValue === valueToAssign) { + assert_unreached("Fix your test. The same values given for " + attributeName + + " in 'value' and 'valueToSet' arguments."); + } + if (typeof (attributeName) === "string") { + assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); + assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); + if (typeof (expectedType) !== "undefined") { + if (expectedValue === null) { + assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); + } else { + assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); + } + } else { + assert_unreached("Fix your test. Wrong type " + expectedType); + } + tmp = obj[attributeName]; + obj[attributeName] = valueToAssign; + assert_equals(obj[attributeName], tmp, attributeName + " can be modified."); + } else { + assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); + } +} + +/** + * Method to check if attribute is readonly. + * Example usage: + * check_readonly(statusNotification, "postedTime", null, 'object', new Date()); + * + * @param obj object to test which has readonly attribute + * @param attributeName attribute name. + * @param expectedValue expected value of provided attribute name + * @param expectedType expected type of provided attribute name + * @param valueToAssign value to assign in order to check if attribute value can be modified + */ +function check_readonly(obj, attributeName, expectedValue, expectedType, valueToAssign) { + check_const(obj, attributeName, expectedValue, expectedType, valueToAssign); +} + +/** + * Method to check if attribute can be set to null. + * Example usage: + * check_not_nullable(syncInfo, "mode"); + * + * @param obj object to test which has not nullable attribute + * @param attributeName attribute name. + */ +function check_not_nullable(obj, attributeName) +{ var old_value = obj[attributeName]; + obj[attributeName] = null; + assert_not_equals(obj[attributeName], null, "Attribute " + attributeName + " can be set to null."); + obj[attributeName] = old_value; +} + +/** + * Method to check NoInterfaceObject + * Example usage: + * check_no_interface_object("BluetoothAdapter") + * + * @param interfaceName interface name + */ +function check_no_interface_object(interfaceName) { + assert_throws({name: "TypeError"}, function () { + tizen[interfaceName](); + },"Wrong call as a function"); + assert_throws({name: "TypeError"}, function () { + new tizen[interfaceName](); + },"Wrong call as a new function"); + assert_throws({name: "TypeError"}, function () { + ({}) instanceof tizen[interfaceName]; + },"instanceof exception"); + assert_equals(tizen[interfaceName], undefined, interfaceName + " is not undefined."); +} + + +/** + * Method to check Constructors + * Example usage: + * check_constructor("BluetoothAdapter") + * + * @param constructorName constructor name + */ + +function check_constructor(constructorName) { + assert_true(constructorName in tizen, "No " + constructorName + " in tizen."); + assert_false({} instanceof tizen[constructorName],"Custom object is not instance of " + constructorName); + assert_throws({ + name: "TypeError" + }, function () { + tizen[constructorName](); + }, "Constructor called as function."); +} + +/** + * Method to check if given method can be overridden in a given object - (TEMPORARY REMOVED). + * That method also checks if given method exists in a given object. + * Example usage: + * check_method_exists(tizen.notification, "get"); + * + * @param obj object with method + * @param methodName name of the method to check. + */ +function check_method_exists(obj, methodName) { + assert_type(obj[methodName], 'function', "Method does not exist."); +} + +/** + * Method to check extensibility of given object. + * Method checks if new attribute and method can be added. + * Example usage: + * check_extensibility(tizen.notification); + * + * @param obj object to check + */ +function check_extensibility(obj) { + var dummyAttribute = "dummyAttributeValue", dummyMethodResult = "dummyMethodResultValue"; + obj.newDummyMethod = function() { + return dummyMethodResult; + } + assert_equals(obj.newDummyMethod(), dummyMethodResult, "Incorrect result from added method."); + + obj.newDummyAttribute = dummyAttribute; + assert_equals(obj.newDummyAttribute, dummyAttribute, "Incorrect result from added attribute."); +} + +/** + * Method to check if attribute can be modify. + * Example usage: + * check_attr(downloadRequest, "fileName", default_val, "string", "file_name.html"); + * + * @param obj object to test which has not readonly attribute + * @param attributeName attribute name. + * @param expectedValue expected value of provided attribute name + * @param expectedType expected type of provided attribute name + * @param valueToAssign value to assign in order to check if attribute value can be modified + */ +function check_attribute(obj, attributeName, expectedValue, expectedType, valueToAssign) { + if (expectedValue === valueToAssign) { + assert_unreached("Fix your test. The same values given for " + attributeName + + " in 'value' and 'valueToSet' arguments."); + } + if (typeof (attributeName) === "string") { + assert_true(attributeName in obj, "Name " + attributeName + " doesn't exist in provided object."); + assert_equals(obj[attributeName], expectedValue, "Value of " + attributeName + " is diffrent."); + if (typeof (expectedType) !== "undefined") { + if (expectedValue === null) { + assert_type(obj[attributeName], "object", "Type of " + attributeName + " is different."); + } else { + assert_type(obj[attributeName], expectedType, "Type of " + attributeName + " is different."); + } + } else { + assert_unreached("Fix your test. Wrong type " + expectedType); + } + obj[attributeName] = valueToAssign; + assert_equals(obj[attributeName], valueToAssign, attributeName + " can be modified."); + } else { + assert_unreached("Fix your test. Wrong type of name " + typeof (attributeName)); + } +} + +/** + * Method to check if whole array can be overwritten with an invalid value. + * Sample usage: + * check_invalid_array_assignments(message, "to", false); + * + * @param obj object which has the array as its property + * @param array name of the array to check + * @param isNullable indicates if the array can be null + */ +function check_invalid_array_assignments(obj, array, isNullable) { + var args = [undefined, true, false, NaN, 0, "TIZEN", {}, function () {}], + val = obj[array], i; + + if (!isNullable) { + obj[array] = null; + assert_not_equals(obj[array], null, "Non-nullable array was set to null"); + assert_type(obj[array], "array", "Non-nullable array type changed after assigning null"); + assert_equals(obj[array].toString(), val.toString(), "Non-nullable array contents changed after assigning null"); + } + + for (i = 0 ; i < args.length ; i++) { + obj[array] = args[i]; + assert_type(obj[array], "array", "Array type changed after assigning an invalid value"); + assert_equals(obj[array].toString(), val.toString(), "Array contents changed after assigning an invalid value"); + } +} + +/** + * Method to check if an object can be overwritten with an invalid value. + * Sample usage: + * check_invalid_object_assignments(message, "body", false); + * + * @param parentObj object which has the 'obj' object as its property + * @param obj name of the object to check + * @param isNullable indicates if the object can be null + */ +function check_invalid_obj_assignments(parentObj, obj, isNullable) { + var args = [undefined, true, false, NaN, 0, "TIZEN", function () {}], + val = parentObj[obj], i; + + if (!isNullable) { + parentObj[obj] = null; + assert_equals(parentObj[obj], val, "Non-nullable obj was modified after assigning null"); + } + + for (i = 0 ; i < args.length ; i++) { + parentObj[obj] = args[i]; + assert_equals(parentObj[obj], val, "The object was set to " + args[i]); + } +} + +/** + * Method to validate conversion for listeners. + * Example usage: + * incorrectListeners = getListenerConversionExceptions(["oninstalled", "onupdated", "onuninstalled"]); + * for(i = 0; i < incorrectListeners.length; i++) { + * packageInformationEventCallback = incorrectListeners[i][0]; + * exceptionName = incorrectListeners[i][1]; + * assert_throws({name : exceptionName}, + * function () { + * tizen.package.setPackageInfoEventListener(packageInformationEventCallback); + * }, exceptionName + " should be thrown - given incorrect successCallback."); + * } + * + * + * @param callbackNames Array with names + * @returns {Array} table of tables which contain incorrect listener (index 0) and exceptionName (index 1) + * + */ +function getListenerConversionExceptions(callbackNames) { + var result = [], conversionTable, i, j, listenerName; + conversionTable = getTypeConversionExceptions("functionObject", false); + + for (i = 0; i < callbackNames.length; i++) { + for (j = 0; j < conversionTable.length; j++) { + listenerName = {}; + listenerName[callbackNames[i]] = conversionTable[j][0]; + result.push([listenerName, conversionTable[j][1]]); + } + } + + return result; +} diff --git a/tct-systeminfo-tizen-tests/tests.full.xml b/tct-systeminfo-tizen-tests/tests.full.xml index 42dee07a3..f9790a2d6 100644 --- a/tct-systeminfo-tizen-tests/tests.full.xml +++ b/tct-systeminfo-tizen-tests/tests.full.xml @@ -3,7 +3,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_exist.html @@ -27,7 +27,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_exist.html @@ -39,7 +39,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_SystemInfoObject_systeminfo_attribute.html @@ -915,7 +915,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_exist.html @@ -1503,7 +1503,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_property_TypeMismatch.html @@ -1551,7 +1551,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_options_TypeMismatch.html @@ -1563,7 +1563,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_property_TypeMismatch.html @@ -1611,7 +1611,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_exist.html @@ -2019,7 +2019,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_all_properties.html @@ -2031,7 +2031,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_CellularNetwork.html @@ -2043,7 +2043,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_CPU.html @@ -2055,7 +2055,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_DeviceOrientation.html @@ -2067,7 +2067,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_constructor_display.html @@ -2079,7 +2079,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Storage.html @@ -2091,7 +2091,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_WifiNetwork.html @@ -2139,7 +2139,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_missarg.html @@ -2151,7 +2151,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_missarg.html @@ -2175,7 +2175,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Battery.html @@ -2187,7 +2187,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Build.html @@ -2199,7 +2199,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Display.html @@ -2211,7 +2211,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Locale.html @@ -2223,7 +2223,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Network.html @@ -2235,7 +2235,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Peripheral.html @@ -2247,7 +2247,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_SIM.html @@ -2295,7 +2295,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_property_empty.html @@ -2314,7 +2314,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2326,7 +2326,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2338,7 +2338,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2350,7 +2350,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2362,7 +2362,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2374,7 +2374,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2386,7 +2386,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2398,7 +2398,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2410,7 +2410,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2422,7 +2422,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2434,7 +2434,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2446,7 +2446,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2458,7 +2458,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2470,7 +2470,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2482,7 +2482,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD @@ -2494,7 +2494,7 @@ - https://developer.tizen.org/help/index.jsp?topic=/org.tizen.web.device.apireference/tizen/systeminfo.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html TBD diff --git a/tct-systeminfo-tizen-tests/tests.xml b/tct-systeminfo-tizen-tests/tests.xml index ccca440c3..4a6075227 100644 --- a/tct-systeminfo-tizen-tests/tests.xml +++ b/tct-systeminfo-tizen-tests/tests.xml @@ -3,7 +3,7 @@ - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_exist.html @@ -13,12 +13,12 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_exist.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_SystemInfoObject_systeminfo_attribute.html @@ -383,7 +383,7 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_extend.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getCapabilities_exist.html @@ -628,7 +628,7 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_with_errorCallback.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_property_TypeMismatch.html @@ -648,12 +648,12 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_errorCallback_invalid_cb.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_options_TypeMismatch.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_property_TypeMismatch.html @@ -673,7 +673,7 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_invalid_cb.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_exist.html @@ -843,37 +843,37 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceCapability_visionQrcodeRecognition_attribute.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener_all_properties.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_CellularNetwork.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_CPU.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_DeviceOrientation.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDisplay_constructor_display.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Storage.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_WifiNetwork.html @@ -893,12 +893,12 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_removePropertyValueChangeListener.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_missarg.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_successCallback_missarg.html @@ -908,37 +908,37 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_getPropertyValue_successCallback_TypeMismatch.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Battery.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Build.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Display.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Locale.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Network.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_Peripheral.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoPropertySuccessCallback_onsuccess_SIM.html @@ -958,7 +958,7 @@ /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfoDeviceOrientation_isAutoRotation_attribute.html - + /opt/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener_property_empty.html