Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
d078e6c6
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
大约 1 年 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d078e6c6
编写于
3月 03, 2022
作者:
Y
y00314596
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add by yangqing3@huawei.com
Signed-off-by:
N
y00314596
<
yangqing3@huawei.com
>
上级
ab26b9a7
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
581 addition
and
45 deletion
+581
-45
global/i18n_standard/intljs/src/main/js/default/test/I18n.test.js
...18n_standard/intljs/src/main/js/default/test/I18n.test.js
+60
-12
global/perf/perfjs/src/main/js/default/test/Perf.test.js
global/perf/perfjs/src/main/js/default/test/Perf.test.js
+521
-33
未找到文件。
global/i18n_standard/intljs/src/main/js/default/test/I18n.test.js
浏览文件 @
d078e6c6
...
...
@@ -1443,7 +1443,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9100
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9100
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
cup
'
,
measureSystem
:
'
US
'
},
{
unit
:
'
liter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
en-US
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
cup
'
,
measureSystem
:
'
US
'
},
{
unit
:
'
liter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
en-US
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9100
'
+
value
);
expect
(
value
).
assertEqual
(
'
236.588 liters
'
);
})
...
...
@@ -1455,7 +1459,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9200
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9200
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
cup
'
,
measureSystem
:
'
US
'
},
{
unit
:
'
liter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
en-US
'
,
'
medium
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
cup
'
,
measureSystem
:
'
US
'
},
{
unit
:
'
liter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
en-US
'
,
'
medium
'
);
console
.
error
(
'
i18n_test_9200
'
+
value
);
expect
(
value
).
assertEqual
(
'
236.588L
'
);
})
...
...
@@ -1467,7 +1475,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9300
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9300
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
cup
'
,
measureSystem
:
'
US
'
},
{
unit
:
'
liter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
en-US
'
,
'
short
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
cup
'
,
measureSystem
:
'
US
'
},
{
unit
:
'
liter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
en-US
'
,
'
short
'
);
console
.
error
(
'
i18n_test_9300
'
+
value
);
expect
(
value
).
assertEqual
(
'
236.588 L
'
);
})
...
...
@@ -1479,7 +1491,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9400
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9400
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
meter
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
mile
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
meter
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
mile
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9400
'
+
value
);
expect
(
value
).
assertEqual
(
'
0.621英里
'
);
})
...
...
@@ -1491,7 +1507,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9500
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9500
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
hour
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
second
'
,
measureSystem
:
'
SI
'
},
10
,
'
zh-CN
'
,
'
medium
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
hour
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
second
'
,
measureSystem
:
'
SI
'
},
10
,
'
zh-CN
'
,
'
medium
'
);
console
.
error
(
'
i18n_test_9500
'
+
value
);
expect
(
value
).
assertEqual
(
'
36,000秒
'
);
})
...
...
@@ -1503,7 +1523,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9600
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9600
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
celsius
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
fahrenheit
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
short
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
celsius
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
fahrenheit
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
short
'
);
console
.
error
(
'
i18n_test_9600
'
+
value
);
expect
(
value
).
assertEqual
(
'
1,832°F
'
);
})
...
...
@@ -1515,7 +1539,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9700
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9700
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
acre
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
hectare
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
acre
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
hectare
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9700
'
+
value
);
expect
(
value
).
assertEqual
(
'
404.686公顷
'
);
})
...
...
@@ -1527,7 +1555,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9710
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9710
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
acre
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
square-meter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
acre
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
square-meter
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9710
'
+
value
);
expect
(
value
).
assertEqual
(
'
4,046,856.422平方米
'
);
})
...
...
@@ -1539,7 +1571,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9800
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9800
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
kilometer-per-hour
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
knot
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
kilometer-per-hour
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
knot
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9800
'
+
value
);
expect
(
value
).
assertEqual
(
'
539.957节
'
);
})
...
...
@@ -1551,7 +1587,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9850
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9850
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
kilometer-per-hour
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
meter-per-second
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
kilometer-per-hour
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
meter-per-second
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9850
'
+
value
);
expect
(
value
).
assertEqual
(
'
每秒277.778米
'
);
})
...
...
@@ -1563,7 +1603,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9900
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9900
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
meter
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
kilometer
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
meter
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
kilometer
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9900
'
+
value
);
expect
(
value
).
assertEqual
(
'
1公里
'
);
})
...
...
@@ -1575,7 +1619,11 @@ describe('I18nTest', function () {
*/
it
(
'
i18n_test_9910
'
,
0
,
function
()
{
console
.
error
(
'
i18n_test_9910
'
+
'
start
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
meter
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
meter-per-second
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
let
value
=
I18n
.
Util
.
unitConvert
({
unit
:
'
meter
'
,
measureSystem
:
'
SI
'
},
{
unit
:
'
meter-per-second
'
,
measureSystem
:
'
SI
'
},
1000
,
'
zh-CN
'
,
'
long
'
);
console
.
error
(
'
i18n_test_9910
'
+
value
);
expect
(
value
).
assertEqual
(
'
1,000米
'
);
})
...
...
global/perf/perfjs/src/main/js/default/test/Perf.test.js
浏览文件 @
d078e6c6
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录