From: Tomasz Kusmierz Date: Mon, 23 Sep 2013 13:22:52 +0000 (+0200) Subject: [Content] clean up - part 2 X-Git-Tag: 2.2.1_release~114^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6bca99e5d92b8cf84ccc6e3f8a98cb1ea6bebcb6;p=test%2Ftct%2Fweb%2Fapi.git [Content] clean up - part 2 Change-Id: I7cad422672bbba7e3043684e77b793ec9a64a611 --- diff --git a/tct-content-tizen-tests/content/ContentManager_extend.html b/tct-content-tizen-tests/content/ContentManager_extend.html index 8b7de68a8..62c6553ef 100644 --- a/tct-content-tizen-tests/content/ContentManager_extend.html +++ b/tct-content-tizen-tests/content/ContentManager_extend.html @@ -38,6 +38,7 @@ Authors: test(function () { check_extensibility(tizen.content); }, "ContentManager_extend"); + diff --git a/tct-content-tizen-tests/content/ContentManager_find.html b/tct-content-tizen-tests/content/ContentManager_find.html index b2aab25da..e7c7622fb 100644 --- a/tct-content-tizen-tests/content/ContentManager_find.html +++ b/tct-content-tizen-tests/content/ContentManager_find.html @@ -42,7 +42,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_errorCallback_TypeMismatch.html b/tct-content-tizen-tests/content/ContentManager_find_errorCallback_TypeMismatch.html index 59ab3873f..09f38ed51 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_errorCallback_TypeMismatch.html +++ b/tct-content-tizen-tests/content/ContentManager_find_errorCallback_TypeMismatch.html @@ -45,7 +45,7 @@ t.step(function () { conversionTable = getTypeConversionExceptions("functionObject", true); successCallback = t.step_func(function () { - assert_unreached("SuccessCallback invoked."); + assert_unreached("find() success callback should not be invoked."); }); for(i = 0; i < conversionTable.length; i++) { @@ -55,11 +55,12 @@ t.step(function () { assert_throws({name: exceptionName}, function () { tizen.content.find(successCallback, errorCallback); - }, exceptionName + " should be thrown - give incorrect errorCallback."); + }, "Given incorrect error callback."); } t.done(); }); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_errorCallback_invalid_cb.html b/tct-content-tizen-tests/content/ContentManager_find_errorCallback_invalid_cb.html index e882c0ced..bdb39a7ca 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_errorCallback_invalid_cb.html +++ b/tct-content-tizen-tests/content/ContentManager_find_errorCallback_invalid_cb.html @@ -44,22 +44,23 @@ var t = async_test("ContentManager_find_errorCallback_invalid_cb", { timeout: 30 t.step(function () { incorrectCallback = { - onerror: t.step_func(function(error) { - assert_unreached("Invalid errorCallback invoked:" + error.name + ": " + error.message); + onerror: t.step_func(function (error) { + assert_unreached("Invalid error callback invoked:" + error.name + ": " + error.message); }) }; successCallback = t.step_func(function () { - assert_unreached("Should not be here."); + assert_unreached("find() success callback should not be invoked."); }); assert_throws({name : exceptionName}, function () { tizen.content.find(successCallback, incorrectCallback); - }, exceptionName + "should be thrown - given incorrect error callback."); + }, "Given incorrect errorCallback."); t.done(); }); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_exist.html b/tct-content-tizen-tests/content/ContentManager_find_exist.html index 424f750a4..eac209bc5 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_exist.html +++ b/tct-content-tizen-tests/content/ContentManager_find_exist.html @@ -34,10 +34,6 @@ Authors: ContentManager_find_exist - - - - @@ -46,14 +42,15 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_filter_TypeMismatch.html b/tct-content-tizen-tests/content/ContentManager_find_filter_TypeMismatch.html index a71c2f7a6..b37c78048 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_filter_TypeMismatch.html +++ b/tct-content-tizen-tests/content/ContentManager_find_filter_TypeMismatch.html @@ -43,11 +43,11 @@ var t = async_test("ContentManager_find_filter_TypeMismatch", { timeout: 30000 } t.step(function () { successCallback = t.step_func(function (contents) { - assert_unreached("successCallback called"); + assert_unreached("find() success callback should not be invoked."); }); errorCallback = t.step_func(function (error) { - assert_unreached("errorCallback called with message " + error.message); + assert_unreached("find() error callback should not be invoked: " + error.name + ": " + error.message); }); conversionTable = getTypeConversionExceptions("object", true); @@ -59,11 +59,12 @@ t.step(function () { assert_throws({name: exceptionName}, function () { tizen.content.find(successCallback, errorCallback, null, filter); - }, exceptionName + " should be thrown"); + }, "Given invalid filter"); } t.done(); }); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_missarg.html b/tct-content-tizen-tests/content/ContentManager_find_missarg.html index d6be81ee1..dd3a9ab54 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_missarg.html +++ b/tct-content-tizen-tests/content/ContentManager_find_missarg.html @@ -34,11 +34,12 @@ Authors: //==== SPEC Tizen Web API:Content:Content:ContentManager:find M //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html //==== TEST_CRITERIA MMA -test(function() { +test(function () { assert_throws({ name: "TypeMismatchError" }, function () { tizen.content.find(); - }, "Method should throw an exception"); + }, "Invoked with non-optional arguments."); }, "ContentManager_find_missarg"); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_nullableArgs.html b/tct-content-tizen-tests/content/ContentManager_find_nullableArgs.html index f6fbffc79..b611b5894 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_nullableArgs.html +++ b/tct-content-tizen-tests/content/ContentManager_find_nullableArgs.html @@ -41,10 +41,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_sortMode_TypeMismatch.html b/tct-content-tizen-tests/content/ContentManager_find_sortMode_TypeMismatch.html index 2cc80f585..a56ab45d6 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_sortMode_TypeMismatch.html +++ b/tct-content-tizen-tests/content/ContentManager_find_sortMode_TypeMismatch.html @@ -43,11 +43,11 @@ var t = async_test("ContentManager_find_sortMode_TypeMismatch", { timeout: 30000 t.step(function () { successCallback = t.step_func(function (contents) { - assert_unreached("successCallback called"); + assert_unreached("find() success callback should not be invoked."); }); errorCallback = t.step_func(function (error) { - assert_unreached("errorCallback called with message: " + error.message); + assert_unreached("find() error callback should not be invoked: " + error.name + ": " + error.message); }); conversionTable = getTypeConversionExceptions("object", true); @@ -59,11 +59,12 @@ t.step(function () { assert_throws({name: exceptionName}, function () { tizen.content.find(successCallback, errorCallback, null, null, sortMode); - }, exceptionName + " should be thrown"); + }, "Given incorrect sortMode"); } t.done(); }); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_sortMode_invalid_obj.html b/tct-content-tizen-tests/content/ContentManager_find_sortMode_invalid_obj.html index 1257438bc..8d7d11d6f 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_sortMode_invalid_obj.html +++ b/tct-content-tizen-tests/content/ContentManager_find_sortMode_invalid_obj.html @@ -43,11 +43,11 @@ var t = async_test("ContentManager_find_sortMode_invalid_obj", { timeout: 30000 t.step(function () { successCallback = t.step_func(function () { - assert_unreached("SuccessCallback invoked."); + assert_unreached("find() success callback should not be invoked."); }); - errorCallback = t.step_func(function () { - assert_unreached("ErrorCallback invoked."); + errorCallback = t.step_func(function (error) { + assert_unreached("find() error callback should not be invoked: " + error.name + ": " + error.message); }); sortMode = { @@ -58,10 +58,11 @@ t.step(function () { assert_throws({name: exceptionName}, function () { tizen.content.find(successCallback, errorCallback, null, null, sortMode); - }, exceptionName + " should be thrown - given incorrect sortMode."); + }, "Given incorrect sortMode."); t.done(); }); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_successCallback_TypeMismatch.html b/tct-content-tizen-tests/content/ContentManager_find_successCallback_TypeMismatch.html index 4a7d10413..743abe509 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_successCallback_TypeMismatch.html +++ b/tct-content-tizen-tests/content/ContentManager_find_successCallback_TypeMismatch.html @@ -51,11 +51,12 @@ t.step(function () { assert_throws({name: exceptionName}, function () { tizen.content.find(successCallback); - }, exceptionName + " should be thrown."); + }, "Given incorrect success callback."); } t.done(); }); + diff --git a/tct-content-tizen-tests/content/ContentManager_find_successCallback_invalid_cb.html b/tct-content-tizen-tests/content/ContentManager_find_successCallback_invalid_cb.html index 88e3d2fcc..ff596d0f2 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_successCallback_invalid_cb.html +++ b/tct-content-tizen-tests/content/ContentManager_find_successCallback_invalid_cb.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_with_count.html b/tct-content-tizen-tests/content/ContentManager_find_with_count.html index f773f86c3..630d40788 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_with_count.html +++ b/tct-content-tizen-tests/content/ContentManager_find_with_count.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_with_directoryId.html b/tct-content-tizen-tests/content/ContentManager_find_with_directoryId.html index 7f571886c..3ec118017 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_with_directoryId.html +++ b/tct-content-tizen-tests/content/ContentManager_find_with_directoryId.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_with_errorCallback.html b/tct-content-tizen-tests/content/ContentManager_find_with_errorCallback.html index 11da6acdb..11ac03955 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_with_errorCallback.html +++ b/tct-content-tizen-tests/content/ContentManager_find_with_errorCallback.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_with_filter.html b/tct-content-tizen-tests/content/ContentManager_find_with_filter.html index a188b2199..ee0e6ac15 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_with_filter.html +++ b/tct-content-tizen-tests/content/ContentManager_find_with_filter.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_with_offset.html b/tct-content-tizen-tests/content/ContentManager_find_with_offset.html index bd72d3b57..bd591c70d 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_with_offset.html +++ b/tct-content-tizen-tests/content/ContentManager_find_with_offset.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentManager_find_with_sortMode.html b/tct-content-tizen-tests/content/ContentManager_find_with_sortMode.html index f01517270..9de35c526 100644 --- a/tct-content-tizen-tests/content/ContentManager_find_with_sortMode.html +++ b/tct-content-tizen-tests/content/ContentManager_find_with_sortMode.html @@ -30,7 +30,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/ContentScanSuccessCallback_notexist.html b/tct-content-tizen-tests/content/ContentScanSuccessCallback_notexist.html index 95c40714c..061e698a4 100644 --- a/tct-content-tizen-tests/content/ContentScanSuccessCallback_notexist.html +++ b/tct-content-tizen-tests/content/ContentScanSuccessCallback_notexist.html @@ -38,6 +38,7 @@ Authors: test(function () { check_no_interface_object("ContentScanSuccessCallback"); }, "ContentScanSuccessCallback_notexist"); + diff --git a/tct-content-tizen-tests/content/ContentScanSuccessCallback_onsuccess.html b/tct-content-tizen-tests/content/ContentScanSuccessCallback_onsuccess.html index 37d935da0..8a0020416 100644 --- a/tct-content-tizen-tests/content/ContentScanSuccessCallback_onsuccess.html +++ b/tct-content-tizen-tests/content/ContentScanSuccessCallback_onsuccess.html @@ -33,7 +33,7 @@ Authors: //==== LABEL: Check if ContentScanSuccessCallback onsuccess is called and if its arguments have proper type //==== ONLOAD_DELAY 30 //==== SPEC: Tizen Web API:Content:Content:ContentScanSuccessCallback:onsuccess M -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html //==== TEST_CRITERIA CBOA CBT setup({timeout: 30000}); @@ -42,11 +42,12 @@ var t = async_test("ContentScanSuccessCallback_onsuccess", { timeout: 30000 }), t.step(function () { onErrorCB = t.step_func(function (error) { - assert_unreached("Error callback was called: " + error.message); + assert_unreached("Find() error callback was invoked: " + error.name + " msg: " + error.message); }); onSuccessCB = t.step_func(function (contents) { - assert_true(contents.length > 0, "media item is not found"); + assert_type(contents, "array", "contents should be an array"); + assert_greater_than(contents.length, 0, "media item is not found"); onSuccess = t.step_func(function (directoryURI) { assert_type(directoryURI, "string", "directoryURI should be a string"); @@ -54,7 +55,7 @@ t.step(function () { }); onError = t.step_func(function (error) { - assert_unreached("Error callback was called with message: " + error.message); + assert_unreached("scanFile error callback was invoked: " + error.name + " msg: " + error.message); }); tizen.content.scanFile(contents[0].contentURI, onSuccess, onError); @@ -62,6 +63,7 @@ t.step(function () { tizen.content.find(onSuccessCB, onErrorCB); }); + diff --git a/tct-content-tizen-tests/content/Content_contentURI_attribute.html b/tct-content-tizen-tests/content/Content_contentURI_attribute.html index 030261958..085b45d64 100644 --- a/tct-content-tizen-tests/content/Content_contentURI_attribute.html +++ b/tct-content-tizen-tests/content/Content_contentURI_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_description_attribute.html b/tct-content-tizen-tests/content/Content_description_attribute.html index f9af9e6a9..7dec5ad34 100644 --- a/tct-content-tizen-tests/content/Content_description_attribute.html +++ b/tct-content-tizen-tests/content/Content_description_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_editableAttributes_attribute.html b/tct-content-tizen-tests/content/Content_editableAttributes_attribute.html index e6c8827b7..6ce211e86 100644 --- a/tct-content-tizen-tests/content/Content_editableAttributes_attribute.html +++ b/tct-content-tizen-tests/content/Content_editableAttributes_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_extend.html b/tct-content-tizen-tests/content/Content_extend.html index 9dc81629e..707181c0b 100644 --- a/tct-content-tizen-tests/content/Content_extend.html +++ b/tct-content-tizen-tests/content/Content_extend.html @@ -34,7 +34,7 @@ Authors: //==== PRIORITY P3 //==== ONLOAD_DELAY 30 //==== SPEC: Tizen Web API:Content:Content:Content:Content U -//==== SPEC_URL: https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html +//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html //==== TEST_CRITERIA OBX setup({timeout: 30000}); @@ -43,11 +43,12 @@ var t = async_test("Content_extend", { timeout: 30000 }), setup_contents(t, t.step_func(function () { onError = t.step_func(function (error) { - assert_unreached("Error callback was called: " + error.message); + assert_unreached("Find() error callback was invoked: " + error.name + " msg: " + error.message); }); onSuccess = t.step_func(function (contents) { - assert_true(contents.length > 0, "media item is not found"); + assert_type(contents, "array", "contents should be an array"); + assert_greater_than(contents.length, 0, "media item is not found"); content = contents[0]; check_extensibility(content); @@ -56,6 +57,7 @@ setup_contents(t, t.step_func(function () { tizen.content.find(onSuccess, onError); })); + diff --git a/tct-content-tizen-tests/content/Content_id_attribute.html b/tct-content-tizen-tests/content/Content_id_attribute.html index 5ffceaf3d..a22c682ba 100644 --- a/tct-content-tizen-tests/content/Content_id_attribute.html +++ b/tct-content-tizen-tests/content/Content_id_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_mimeType_attribute.html b/tct-content-tizen-tests/content/Content_mimeType_attribute.html index 539ecf62c..e587d0c43 100644 --- a/tct-content-tizen-tests/content/Content_mimeType_attribute.html +++ b/tct-content-tizen-tests/content/Content_mimeType_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_modifiedDate_attribute.html b/tct-content-tizen-tests/content/Content_modifiedDate_attribute.html index 2a5a81e24..84df9ef63 100644 --- a/tct-content-tizen-tests/content/Content_modifiedDate_attribute.html +++ b/tct-content-tizen-tests/content/Content_modifiedDate_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_name_attribute.html b/tct-content-tizen-tests/content/Content_name_attribute.html index ce30d2f04..7e5953c74 100644 --- a/tct-content-tizen-tests/content/Content_name_attribute.html +++ b/tct-content-tizen-tests/content/Content_name_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_notexist.html b/tct-content-tizen-tests/content/Content_notexist.html index b6689345c..61e2207a7 100644 --- a/tct-content-tizen-tests/content/Content_notexist.html +++ b/tct-content-tizen-tests/content/Content_notexist.html @@ -38,6 +38,7 @@ Authors: test(function () { check_no_interface_object("Content"); }, "Content_notexist"); + diff --git a/tct-content-tizen-tests/content/Content_rating_attribute.html b/tct-content-tizen-tests/content/Content_rating_attribute.html index c8c8b24f3..7e185c797 100644 --- a/tct-content-tizen-tests/content/Content_rating_attribute.html +++ b/tct-content-tizen-tests/content/Content_rating_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_releaseDate_attribute.html b/tct-content-tizen-tests/content/Content_releaseDate_attribute.html index fbea7128e..971b0f112 100644 --- a/tct-content-tizen-tests/content/Content_releaseDate_attribute.html +++ b/tct-content-tizen-tests/content/Content_releaseDate_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_size_attribute.html b/tct-content-tizen-tests/content/Content_size_attribute.html index 1a296cad2..e371b41e6 100644 --- a/tct-content-tizen-tests/content/Content_size_attribute.html +++ b/tct-content-tizen-tests/content/Content_size_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_thumbnailURIs_attribute.html b/tct-content-tizen-tests/content/Content_thumbnailURIs_attribute.html index 362755d28..cf112a9d5 100644 --- a/tct-content-tizen-tests/content/Content_thumbnailURIs_attribute.html +++ b/tct-content-tizen-tests/content/Content_thumbnailURIs_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_title_attribute.html b/tct-content-tizen-tests/content/Content_title_attribute.html index 26ce2ed2a..caa799f72 100644 --- a/tct-content-tizen-tests/content/Content_title_attribute.html +++ b/tct-content-tizen-tests/content/Content_title_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_type_AUDIO.html b/tct-content-tizen-tests/content/Content_type_AUDIO.html index 8be65f142..8a0bc7a91 100644 --- a/tct-content-tizen-tests/content/Content_type_AUDIO.html +++ b/tct-content-tizen-tests/content/Content_type_AUDIO.html @@ -42,7 +42,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_type_IMAGE.html b/tct-content-tizen-tests/content/Content_type_IMAGE.html index 4588d380b..cefb09841 100644 --- a/tct-content-tizen-tests/content/Content_type_IMAGE.html +++ b/tct-content-tizen-tests/content/Content_type_IMAGE.html @@ -42,7 +42,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_type_VIDEO.html b/tct-content-tizen-tests/content/Content_type_VIDEO.html index 6e8f30b4d..393e8829f 100644 --- a/tct-content-tizen-tests/content/Content_type_VIDEO.html +++ b/tct-content-tizen-tests/content/Content_type_VIDEO.html @@ -42,7 +42,7 @@ Authors:
diff --git a/tct-content-tizen-tests/content/Content_type_attribute.html b/tct-content-tizen-tests/content/Content_type_attribute.html index e12e57091..e4eea5370 100644 --- a/tct-content-tizen-tests/content/Content_type_attribute.html +++ b/tct-content-tizen-tests/content/Content_type_attribute.html @@ -30,10 +30,10 @@ Authors:
diff --git a/tct-content-tizen-tests/tests.full.xml b/tct-content-tizen-tests/tests.full.xml index 12ec1e3b0..5bb66fffe 100644 --- a/tct-content-tizen-tests/tests.full.xml +++ b/tct-content-tizen-tests/tests.full.xml @@ -51,7 +51,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_exist.html @@ -63,7 +63,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find.html @@ -111,7 +111,7 @@ - + /opt/tct-content-tizen-tests/content/Content_type_AUDIO.html @@ -147,7 +147,7 @@ - + /opt/tct-content-tizen-tests/content/Content_type_IMAGE.html @@ -159,7 +159,7 @@ - + /opt/tct-content-tizen-tests/content/Content_type_VIDEO.html @@ -171,14 +171,14 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_nullableArgs.html - https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html + https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/content.html TBD @@ -447,7 +447,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_successCallback_invalid_cb.html @@ -759,7 +759,7 @@ - + /opt/tct-content-tizen-tests/content/Content_editableAttributes_attribute.html @@ -771,7 +771,7 @@ - + /opt/tct-content-tizen-tests/content/Content_id_attribute.html @@ -783,7 +783,7 @@ - + /opt/tct-content-tizen-tests/content/Content_name_attribute.html @@ -795,7 +795,7 @@ - + /opt/tct-content-tizen-tests/content/Content_type_attribute.html @@ -807,7 +807,7 @@ - + /opt/tct-content-tizen-tests/content/Content_mimeType_attribute.html @@ -819,7 +819,7 @@ - + /opt/tct-content-tizen-tests/content/Content_title_attribute.html @@ -831,7 +831,7 @@ - + /opt/tct-content-tizen-tests/content/Content_contentURI_attribute.html @@ -843,7 +843,7 @@ - + /opt/tct-content-tizen-tests/content/Content_thumbnailURIs_attribute.html @@ -855,7 +855,7 @@ - + /opt/tct-content-tizen-tests/content/Content_releaseDate_attribute.html @@ -867,7 +867,7 @@ - + /opt/tct-content-tizen-tests/content/Content_modifiedDate_attribute.html @@ -879,7 +879,7 @@ - + /opt/tct-content-tizen-tests/content/Content_size_attribute.html @@ -891,7 +891,7 @@ - + /opt/tct-content-tizen-tests/content/Content_description_attribute.html @@ -903,7 +903,7 @@ - + /opt/tct-content-tizen-tests/content/Content_rating_attribute.html @@ -915,7 +915,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_errorCallback.html @@ -927,7 +927,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_directoryId.html @@ -939,7 +939,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_filter.html @@ -951,7 +951,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_sortMode.html @@ -963,7 +963,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_count.html @@ -975,7 +975,7 @@ - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_offset.html diff --git a/tct-content-tizen-tests/tests.xml b/tct-content-tizen-tests/tests.xml index c70a5b749..d49b3ef97 100644 --- a/tct-content-tizen-tests/tests.xml +++ b/tct-content-tizen-tests/tests.xml @@ -23,12 +23,12 @@ /opt/tct-content-tizen-tests/content/ContentManager_getDirectories_exist.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_exist.html - + /opt/tct-content-tizen-tests/content/ContentManager_find.html @@ -48,7 +48,7 @@ /opt/tct-content-tizen-tests/content/ContentManager_updateBatch.html - + /opt/tct-content-tizen-tests/content/Content_type_AUDIO.html @@ -63,17 +63,17 @@ /opt/tct-content-tizen-tests/content/ContentManager_updateBatch_description.html - + /opt/tct-content-tizen-tests/content/Content_type_IMAGE.html - + /opt/tct-content-tizen-tests/content/Content_type_VIDEO.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_nullableArgs.html @@ -188,7 +188,7 @@ /opt/tct-content-tizen-tests/content/ContentManager_find_successCallback_TypeMismatch.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_successCallback_invalid_cb.html @@ -318,97 +318,97 @@ /opt/tct-content-tizen-tests/content/Content_extend.html - + /opt/tct-content-tizen-tests/content/Content_editableAttributes_attribute.html - + /opt/tct-content-tizen-tests/content/Content_id_attribute.html - + /opt/tct-content-tizen-tests/content/Content_name_attribute.html - + /opt/tct-content-tizen-tests/content/Content_type_attribute.html - + /opt/tct-content-tizen-tests/content/Content_mimeType_attribute.html - + /opt/tct-content-tizen-tests/content/Content_title_attribute.html - + /opt/tct-content-tizen-tests/content/Content_contentURI_attribute.html - + /opt/tct-content-tizen-tests/content/Content_thumbnailURIs_attribute.html - + /opt/tct-content-tizen-tests/content/Content_releaseDate_attribute.html - + /opt/tct-content-tizen-tests/content/Content_modifiedDate_attribute.html - + /opt/tct-content-tizen-tests/content/Content_size_attribute.html - + /opt/tct-content-tizen-tests/content/Content_description_attribute.html - + /opt/tct-content-tizen-tests/content/Content_rating_attribute.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_errorCallback.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_directoryId.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_filter.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_sortMode.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_count.html - + /opt/tct-content-tizen-tests/content/ContentManager_find_with_offset.html