diff --git a/commonlibrary/crossplatform/BUILD.gn b/commonlibrary/crossplatform/BUILD.gn index 8cc80833c0eea56afb6a70243a69ae4142fcd704..f32844ecb68723cc8e01932261f4668a16efef31 100644 --- a/commonlibrary/crossplatform/BUILD.gn +++ b/commonlibrary/crossplatform/BUILD.gn @@ -16,15 +16,15 @@ group("crossplatform") { testonly = true if (is_standard_system) { deps = [ - "commonlibraryconvertxmletstest:convertxml_ets_test", - "commonlibrarydequeetstest:deque_ets_test", - "commonlibraryhashmapetstest:hashmap_ets_test", - "commonlibraryhashsetetstest:hashset_ets_test", - "commonlibraryplainarrayetstest:plainarray_ets_test", - "commonlibrarytreesetetstest:treeset_ets_test", - "commonlibraryurietstest:uri_ets_test", - "commonlibraryurletstest:url_ets_test", - "commonlibraryutiletstest:util_ets_test", + "commonlibraryconvertxmletstest:ActsConvertxmlTest", + "commonlibrarydequeetstest:ActsDequeTest", + "commonlibraryhashmapetstest:ActsHashMapTest", + "commonlibraryhashsetetstest:ActsHashSetTest", + "commonlibraryplainarrayetstest:ActsPlainArrayTest", + "commonlibrarytreesetetstest:ActsTreeSetTest", + "commonlibraryurietstest:ActsUriTest", + "commonlibraryurletstest:ActsUrlTest", + "commonlibraryutiletstest:ActsUtilTest", ] } } diff --git a/commonlibrary/crossplatform/commonlibraryconvertxmletstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryconvertxmletstest/AppScope/app.json index b0ff7210aecbb3d7b8cf53c4d4b651b5ac589622..6f58491ddf9cf37996ed945d57fa0afa03cb7b4e 100644 --- a/commonlibrary/crossplatform/commonlibraryconvertxmletstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryconvertxmletstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryconvertxmletstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryconvertxmletstest/BUILD.gn index c7884b6ac854cf4d3ef7bd8482f6048e14eb0847..60552c137e16b1399ae4df5081307ee863b9c3da 100644 --- a/commonlibrary/crossplatform/commonlibraryconvertxmletstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryconvertxmletstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("convertxml_ets_test") { +ohos_js_hap_suite("ActsConvertxmlTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("convertxml_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "convertxml_ets_test" + hap_name = "ActsConvertxmlTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryconvertxmletstest/Test.json b/commonlibrary/crossplatform/commonlibraryconvertxmletstest/Test.json index e81514b0419af8cf0a77bdb3b500b013ec2bc2fa..a24937f75cbd5f9453c6404016a1b4712c8e6d7b 100644 --- a/commonlibrary/crossplatform/commonlibraryconvertxmletstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryconvertxmletstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsConvertxmlTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibrarydequeetstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibrarydequeetstest/AppScope/app.json index ca70377237dae46cc1c5957d608c05daabf120dd..adb4accca5f39a9f9c2e35228615a95266f5c87e 100644 --- a/commonlibrary/crossplatform/commonlibrarydequeetstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibrarydequeetstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibrarydequeetstest/BUILD.gn b/commonlibrary/crossplatform/commonlibrarydequeetstest/BUILD.gn index 5bd90148e1e5eb08694714696027e2e53e2468c4..2c4785eaa98f656c4970531e79eef97330dc50bd 100644 --- a/commonlibrary/crossplatform/commonlibrarydequeetstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibrarydequeetstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("deque_ets_test") { +ohos_js_hap_suite("ActsDequeTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("deque_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "deque_ets_test" + hap_name = "ActsDequeTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibrarydequeetstest/Test.json b/commonlibrary/crossplatform/commonlibrarydequeetstest/Test.json index 9db046596acdbe199cc7488ccb4941eb4c10853d..c0732331198f550c13d37f023dd6b54258fea702 100644 --- a/commonlibrary/crossplatform/commonlibrarydequeetstest/Test.json +++ b/commonlibrary/crossplatform/commonlibrarydequeetstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsDequeTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibraryhashmapetstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryhashmapetstest/AppScope/app.json index 092f0df1623400ef6b94212168dd07eaf506f8fd..da0623af2a2346b6504631eeb1311cb87a6c27e7 100644 --- a/commonlibrary/crossplatform/commonlibraryhashmapetstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryhashmapetstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryhashmapetstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryhashmapetstest/BUILD.gn index 5c09e1ea76bc0ca82ca24436c80f2e33d82eb990..95ba50e54c4079395ca7777fe7c99b96fcb49021 100644 --- a/commonlibrary/crossplatform/commonlibraryhashmapetstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryhashmapetstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("hashmap_ets_test") { +ohos_js_hap_suite("ActsHashMapTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("hashmap_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "hashmap_ets_test" + hap_name = "ActsHashMapTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryhashmapetstest/Test.json b/commonlibrary/crossplatform/commonlibraryhashmapetstest/Test.json index a5f0aa2bfcefb20d18a7eed46292c734a3a100ca..f6dab73225e64faf1f6c55701cc7cf4107f32148 100644 --- a/commonlibrary/crossplatform/commonlibraryhashmapetstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryhashmapetstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsHashMapTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibraryhashsetetstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryhashsetetstest/AppScope/app.json index 1ab8c6a99446f38ed6a374845f21df5ad23d6846..099ff802bb1341113aa9abb8d73baa059b134a25 100644 --- a/commonlibrary/crossplatform/commonlibraryhashsetetstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryhashsetetstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryhashsetetstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryhashsetetstest/BUILD.gn index fd0e741fd98085429ba3a4489a3fee96c56459bf..9fefa3ad5e04ca710e8e2d14af8af7310108580e 100644 --- a/commonlibrary/crossplatform/commonlibraryhashsetetstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryhashsetetstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("hashset_ets_test") { +ohos_js_hap_suite("ActsHashSetTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("hashset_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "hashset_ets_test" + hap_name = "ActsHashSetTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryhashsetetstest/Test.json b/commonlibrary/crossplatform/commonlibraryhashsetetstest/Test.json index 16aaf40ada6a22a66fb79fe677d936643774a5ba..1b30ba498972f24f39b710b3095e4eabef15ac01 100644 --- a/commonlibrary/crossplatform/commonlibraryhashsetetstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryhashsetetstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsHashSetTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibraryplainarrayetstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryplainarrayetstest/AppScope/app.json index d630d7571b465f5ec97be45082c506e96102e583..9bdcc21b3e037558df59b8486b47b44e333b9a7f 100644 --- a/commonlibrary/crossplatform/commonlibraryplainarrayetstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryplainarrayetstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryplainarrayetstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryplainarrayetstest/BUILD.gn index 2735b7818ce133fd48edb1bc2f182b4012daa59b..1ad458a0c187e31d5552af0133948ca78d0daff8 100644 --- a/commonlibrary/crossplatform/commonlibraryplainarrayetstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryplainarrayetstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("plainarray_ets_test") { +ohos_js_hap_suite("ActsPlainArrayTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("plainarray_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "plainarray_ets_test" + hap_name = "ActsPlainArrayTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryplainarrayetstest/Test.json b/commonlibrary/crossplatform/commonlibraryplainarrayetstest/Test.json index c2ce7c2ae179e9f04d93b65c68b5879939329528..92916342e2db7b362a3db1bcdf5f8d2adc12219d 100644 --- a/commonlibrary/crossplatform/commonlibraryplainarrayetstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryplainarrayetstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsPlainArrayTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibrarytreesetetstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibrarytreesetetstest/AppScope/app.json index 3165148ad05a7df9f3035b64d2c4b425f7d62716..727cacacae9d5f6319906e114ecd2a3fe17d717e 100644 --- a/commonlibrary/crossplatform/commonlibrarytreesetetstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibrarytreesetetstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibrarytreesetetstest/BUILD.gn b/commonlibrary/crossplatform/commonlibrarytreesetetstest/BUILD.gn index c8cf378ba951c7da3131a46aa82be100ac1c0eba..e7b461283659cd6ac4c6f654986a48def977a0ce 100644 --- a/commonlibrary/crossplatform/commonlibrarytreesetetstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibrarytreesetetstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("treeset_ets_test") { +ohos_js_hap_suite("ActsTreeSetTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("treeset_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "treeset_ets_test" + hap_name = "ActsTreeSetTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibrarytreesetetstest/Test.json b/commonlibrary/crossplatform/commonlibrarytreesetetstest/Test.json index ab431b0ee902c80d98bde0e3b64e19406df6d5ef..09aac14ab2627251df7498b690d3c83063d3b3cb 100644 --- a/commonlibrary/crossplatform/commonlibrarytreesetetstest/Test.json +++ b/commonlibrary/crossplatform/commonlibrarytreesetetstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsTreeSetTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibraryurietstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryurietstest/AppScope/app.json index 00d2555761e77faf7483b1011c23ff7c8816d21d..3089b7cfd82ca8a40317667d3bf35bbdf15c2d06 100644 --- a/commonlibrary/crossplatform/commonlibraryurietstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryurietstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryurietstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryurietstest/BUILD.gn index fd7884d83fde3568676c0938fe3e9f1e04f356e6..f4f0a64a2d0a2f312919217a48551a4cae7f874b 100644 --- a/commonlibrary/crossplatform/commonlibraryurietstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryurietstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("uri_ets_test") { +ohos_js_hap_suite("ActsUriTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("uri_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "uri_ets_test" + hap_name = "ActsUriTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryurietstest/Test.json b/commonlibrary/crossplatform/commonlibraryurietstest/Test.json index b5e4d554ddc0a68988b4c9fb00ad054b4ea538cc..294248dba931458312da58cccfb7cd6b8f78373a 100644 --- a/commonlibrary/crossplatform/commonlibraryurietstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryurietstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsUriTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibraryurletstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryurletstest/AppScope/app.json index 5806f32f41bab845f374846495c35342012038ee..3db26ff7bcf9c8395c0ad34fa7ec2a3137e62dc3 100644 --- a/commonlibrary/crossplatform/commonlibraryurletstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryurletstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryurletstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryurletstest/BUILD.gn index 38276f67e78bb50e45488ac3675bf866ef585f8f..1a414d98d908027ce28cf3c40f8a1c28404ed2fa 100644 --- a/commonlibrary/crossplatform/commonlibraryurletstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryurletstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("url_ets_test") { +ohos_js_hap_suite("ActsUrlTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("url_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "url_ets_test" + hap_name = "ActsUrlTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryurletstest/Test.json b/commonlibrary/crossplatform/commonlibraryurletstest/Test.json index 72b1f76603489d93a6313b705a7c7488cecd6b9c..064be19b950d83a065dfec63bb9c02b5d1fd4448 100644 --- a/commonlibrary/crossplatform/commonlibraryurletstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryurletstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsUrlTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true diff --git a/commonlibrary/crossplatform/commonlibraryutiletstest/AppScope/app.json b/commonlibrary/crossplatform/commonlibraryutiletstest/AppScope/app.json index dec357dad292a7cfb692c6b0bc1d96cf2676f339..d75ce8e2fde559f5d7ddc39fc97a2c5d03eaa8f5 100644 --- a/commonlibrary/crossplatform/commonlibraryutiletstest/AppScope/app.json +++ b/commonlibrary/crossplatform/commonlibraryutiletstest/AppScope/app.json @@ -6,10 +6,10 @@ "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", - "minAPIVersion": 9, - "targetAPIVersion": 9, + "minAPIVersion": 10, + "targetAPIVersion": 10, "car": { - "apiCompatibleVersion": 9, + "apiCompatibleVersion": 10, "singleUser": false } } diff --git a/commonlibrary/crossplatform/commonlibraryutiletstest/BUILD.gn b/commonlibrary/crossplatform/commonlibraryutiletstest/BUILD.gn index efd12772292848eaf910014a55941b5f83ca85a2..61d3d09129b8c192e38b23975fdb859be35cb171 100644 --- a/commonlibrary/crossplatform/commonlibraryutiletstest/BUILD.gn +++ b/commonlibrary/crossplatform/commonlibraryutiletstest/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. import("//test/xts/tools/build/suite.gni") -ohos_js_hap_suite("util_ets_test") { +ohos_js_hap_suite("ActsUtilTest") { hap_profile = "src/main/module.json" deps = [ ":windowStage_js_assets", @@ -22,7 +22,7 @@ ohos_js_hap_suite("util_ets_test") { certificate_profile = "./signature/openharmony_sx.p7b" # hap_name: HAP的名字,可选,默认为目标名 - hap_name = "util_ets_test" + hap_name = "ActsUtilTest" subsystem_name = "commonlibrary" part_name = "ets_utils" } diff --git a/commonlibrary/crossplatform/commonlibraryutiletstest/Test.json b/commonlibrary/crossplatform/commonlibraryutiletstest/Test.json index 6e7af2bc0708093ca900c596ad1d8d5addde69c9..24d787f6b2db5393cdffe74c77925c53ba25c8d3 100644 --- a/commonlibrary/crossplatform/commonlibraryutiletstest/Test.json +++ b/commonlibrary/crossplatform/commonlibraryutiletstest/Test.json @@ -18,7 +18,7 @@ "kits": [ { "test-file-name": [ - "ActsDemoStageTest.hap" + "ActsUtilTest.hap" ], "type": "AppInstallKit", "cleanup-apps": true