Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
c54fc8a9
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,发现更多精彩内容 >>
未验证
提交
c54fc8a9
编写于
2月 21, 2022
作者:
O
openharmony_ci
提交者:
Gitee
2月 21, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1870 合入faultloggerjs xts用例
Merge pull request !1870 from uoengopen/local
上级
dc1ff358
b276199d
变更
15
隐藏空白更改
内联
并排
Showing
15 changed file
with
493 addition
and
2 deletion
+493
-2
hiviewdfx/BUILD.gn
hiviewdfx/BUILD.gn
+4
-2
hiviewdfx/hiview/faultlogger/faultloggerjs/BUILD.gn
hiviewdfx/hiview/faultlogger/faultloggerjs/BUILD.gn
+30
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/Test.json
hiviewdfx/hiview/faultlogger/faultloggerjs/Test.json
+18
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/signature/openharmony_sx.p7b
...ew/faultlogger/faultloggerjs/signature/openharmony_sx.p7b
+0
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/config.json
...dfx/hiview/faultlogger/faultloggerjs/src/main/config.json
+60
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/app.js
...view/faultlogger/faultloggerjs/src/main/js/default/app.js
+22
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/i18n/en-US.json
...tlogger/faultloggerjs/src/main/js/default/i18n/en-US.json
+6
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/i18n/zh-CN.json
...tlogger/faultloggerjs/src/main/js/default/i18n/zh-CN.json
+6
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/pages/index/index.css
...r/faultloggerjs/src/main/js/default/pages/index/index.css
+9
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/pages/index/index.hml
...r/faultloggerjs/src/main/js/default/pages/index/index.hml
+5
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/pages/index/index.js
...er/faultloggerjs/src/main/js/default/pages/index/index.js
+40
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/test/List.test.js
...ogger/faultloggerjs/src/main/js/default/test/List.test.js
+15
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/test/faultlogger.test.js
...aultloggerjs/src/main/js/default/test/faultlogger.test.js
+266
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/resources/base/element/string.json
...faultloggerjs/src/main/resources/base/element/string.json
+12
-0
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/resources/base/media/icon.png
...gger/faultloggerjs/src/main/resources/base/media/icon.png
+0
-0
未找到文件。
hiviewdfx/BUILD.gn
浏览文件 @
c54fc8a9
...
...
@@ -11,10 +11,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import("//build/ohos_var.gni")
group("hiviewdfxtestacts") {
testonly = true
if (is_standard_system) {
deps = [ "hiappeventtest/hiappeventjstest:ActsHiAppeventTest" ]
deps = [
"hiappeventtest/hiappeventjstest:ActsHiAppeventTest",
"hiview/faultlogger/faultloggerjs:faultloggerjs_test",
]
}
}
hiviewdfx/hiview/faultlogger/faultloggerjs/BUILD.gn
0 → 100755
浏览文件 @
c54fc8a9
# Copyright (C) 2021 Huawei Device 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.
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("faultloggerjs_test") {
hap_profile = "./src/main/config.json"
deps = [
":faultloggerjs_assets",
":faultloggerjs_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsFaultloggerJsTest"
}
ohos_js_assets("faultloggerjs_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("faultloggerjs_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
hiviewdfx/hiview/faultlogger/faultloggerjs/Test.json
0 → 100755
浏览文件 @
c54fc8a9
{
"description"
:
"Configuration for hjunit demo Tests"
,
"driver"
:
{
"type"
:
"JSUnitTest"
,
"test-timeout"
:
"300000"
,
"package"
:
"ohos.faultloggerjs.test"
,
"shell-timeout"
:
"60000"
},
"kits"
:
[
{
"test-file-name"
:
[
"ActsFaultloggerJsTest.hap"
],
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
}
]
}
hiviewdfx/hiview/faultlogger/faultloggerjs/signature/openharmony_sx.p7b
0 → 100755
浏览文件 @
c54fc8a9
文件已添加
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/config.json
0 → 100755
浏览文件 @
c54fc8a9
{
"app"
:
{
"bundleName"
:
"ohos.faultloggerjs.test"
,
"vendor"
:
"example"
,
"version"
:
{
"code"
:
1
,
"name"
:
"1.0"
},
"apiVersion"
:
{
"compatible"
:
4
,
"target"
:
5
}
},
"deviceConfig"
:
{},
"module"
:
{
"package"
:
"ohos.faultloggerjs.test"
,
"name"
:
".MyApplication"
,
"deviceType"
:
[
"phone"
],
"distro"
:
{
"deliveryWithInstall"
:
true
,
"moduleName"
:
"entry"
,
"moduleType"
:
"entry"
},
"abilities"
:
[
{
"visible"
:
true
,
"skills"
:
[
{
"entities"
:
[
"entity.system.home"
],
"actions"
:
[
"action.system.home"
]
}
],
"name"
:
"ohos.faultloggerjs.test.MainAbility"
,
"icon"
:
"$media:icon"
,
"description"
:
"$string:mainability_description"
,
"label"
:
"MyApplication"
,
"type"
:
"page"
,
"launchType"
:
"standard"
}
],
"js"
:
[
{
"pages"
:
[
"pages/index/index"
],
"name"
:
"default"
,
"window"
:
{
"designWidth"
:
720
,
"autoDesignWidth"
:
false
}
}
]
}
}
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/app.js
0 → 100755
浏览文件 @
c54fc8a9
/*
* Copyright (C) 2021 Huawei Device 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.
*/
export
default
{
onCreate
()
{
console
.
info
(
'
AceApplication onCreate
'
);
},
onDestroy
()
{
console
.
info
(
'
AceApplication onDestroy
'
);
}
};
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/i18n/en-US.json
0 → 100755
浏览文件 @
c54fc8a9
{
"strings"
:
{
"hello"
:
"Hello"
,
"world"
:
"World"
}
}
\ No newline at end of file
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/i18n/zh-CN.json
0 → 100755
浏览文件 @
c54fc8a9
{
"strings"
:
{
"hello"
:
"您好"
,
"world"
:
"世界"
}
}
\ No newline at end of file
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/pages/index/index.css
0 → 100755
浏览文件 @
c54fc8a9
.container
{
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
center
;
}
.title
{
font-size
:
100px
;
}
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/pages/index/index.hml
0 → 100755
浏览文件 @
c54fc8a9
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/pages/index/index.js
0 → 100755
浏览文件 @
c54fc8a9
/*
* Copyright (C) 2021 Huawei Device 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.
*/
import
{
Core
,
ExpectExtend
,
Constant
}
from
'
deccjsunit/index
'
export
default
{
data
:
{
title
:
""
},
onInit
()
{
this
.
title
=
this
.
$t
(
'
strings.world
'
);
},
onShow
()
{
console
.
info
(
'
onShow finish
'
)
const
core
=
Core
.
getInstance
()
const
expectExtend
=
new
ExpectExtend
({
'
id
'
:
'
extend
'
})
core
.
addService
(
'
expect
'
,
expectExtend
)
core
.
init
()
const
configService
=
core
.
getDefaultService
(
'
config
'
)
configService
.
setConfig
(
this
)
require
(
'
../../test/List.test
'
)
core
.
execute
()
},
onReady
()
{
},
}
\ No newline at end of file
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/test/List.test.js
0 → 100755
浏览文件 @
c54fc8a9
/*
* Copyright (C) 2021 Huawei Device 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.
*/
require
(
'
./faultlogger.test.js
'
)
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/js/default/test/faultlogger.test.js
0 → 100755
浏览文件 @
c54fc8a9
/*
* Copyright (C) 2021 Huawei Device 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.
*/
import
faultlogger
from
'
@ohos.faultLogger
'
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'
deccjsunit/index
'
describe
(
"
FaultlogJsTest
"
,
function
()
{
beforeAll
(
function
()
{
console
.
info
(
'
FaultlogJsTest beforeAll called
'
)
})
afterAll
(
function
()
{
console
.
info
(
'
FaultlogJsTest afterAll called
'
)
})
beforeEach
(
function
()
{
console
.
info
(
'
FaultlogJsTest beforeEach called
'
)
})
afterEach
(
function
()
{
console
.
info
(
'
FaultlogJsTest afterEach called
'
)
})
async
function
msleep
(
time
)
{
let
promise
=
new
Promise
((
resolve
,
reject
)
=>
{
setTimeout
(()
=>
resolve
(
"
done!
"
),
time
)
});
let
result
=
await
promise
;
}
/**
* test
*
* @tc.name: FaultlogJsException_001
* @tc.desc: 检验函数参数输入错误时程序是否会崩溃
* @tc.require: AR000GICT2
* @tc.author:
*/
it
(
'
FaultlogJsException_001
'
,
0
,
async
function
(
done
)
{
console
.
info
(
"
---------------------------FaultlogJsException_001----------------------------------
"
);
try
{
let
ret1
=
faultlogger
.
querySelfFaultLog
(
"
faultloggertestsummary01
"
);
console
.
info
(
"
FaultlogJsException_001 ret1 ==
"
+
ret1
);
expect
(
ret1
).
assertEqual
(
undefined
);
let
ret2
=
faultlogger
.
querySelfFaultLog
(
faultlogger
.
FaultType
.
JS_CRASH
,
"
faultloggertestsummary01
"
);
console
.
info
(
"
FaultlogJsException_001 ret2 ==
"
+
ret2
);
expect
(
ret2
).
assertEqual
(
undefined
);
let
ret3
=
faultlogger
.
querySelfFaultLog
();
console
.
info
(
"
FaultlogJsException_001 ret3 ==
"
+
ret3
);
expect
(
ret3
).
assertEqual
(
undefined
);
done
();
return
;
}
catch
(
err
)
{
console
.
info
(
err
);
}
expect
(
false
).
assertTrue
();
done
();
})
/**
* test
*
* @tc.name: FaultlogJsTest_002
* @tc.desc: 检验promise同步方式获取faultlog CPP_CRASH日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it
(
'
FaultlogJsTest_002
'
,
0
,
async
function
(
done
)
{
console
.
info
(
"
---------------------------FaultlogJsTest_002----------------------------------
"
);
try
{
let
now
=
Date
.
now
();
console
.
info
(
"
FaultlogJsTest_002 2 +
"
+
now
);
let
module
=
"
ohos.faultloggerjs.test
"
;
const
loopTimes
=
10
;
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
--------FaultlogJsTest_002 3 +
"
+
i
+
"
----------
"
);
faultlogger
.
addFaultLog
(
i
,
faultlogger
.
FaultType
.
CPP_CRASH
,
module
,
"
faultloggertestsummary02
"
+
i
);
await
msleep
(
300
);
}
await
msleep
(
1000
);
console
.
info
(
"
--------FaultlogJsTest_002 4
"
+
"
----------
"
);
let
ret
=
await
faultlogger
.
querySelfFaultLog
(
faultlogger
.
FaultType
.
CPP_CRASH
);
console
.
info
(
"
FaultlogJsTest_002 ret ==
"
+
ret
.
length
);
expect
(
ret
.
length
).
assertEqual
(
loopTimes
);
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
faultloggertestsummary02
"
+
i
+
"
fullLog.length
"
+
ret
[
i
].
fullLog
.
length
);
if
(
ret
[
i
].
fullLog
.
indexOf
(
"
faultloggertestsummary02
"
+
(
loopTimes
-
1
-
i
))
!=
-
1
)
{
console
.
info
(
"
FaultlogJsTest_002
"
+
ret
[
i
].
fullLog
.
length
);
expect
(
true
).
assertTrue
();
}
else
{
expect
(
false
).
assertTrue
();
}
}
console
.
info
(
"
--------FaultlogJsTest_002 5
"
+
"
----------
"
);
ret
=
await
faultlogger
.
querySelfFaultLog
(
faultlogger
.
FaultType
.
NO_SPECIFIC
);
console
.
info
(
"
FaultlogJsTest_002 ret ==
"
+
ret
.
length
);
expect
(
ret
.
length
).
assertEqual
(
loopTimes
);
done
();
return
;
}
catch
(
err
)
{
console
.
info
(
"
catch (err) ==
"
+
err
);
}
console
.
info
(
"
FaultlogJsTest_002 error
"
);
expect
(
false
).
assertTrue
();
done
();
})
/**
* test
*
* @tc.name: FaultlogJsTest_003
* @tc.desc: 检验promise同步方式获取faultlog JS_CRASH日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it
(
'
FaultlogJsTest_003
'
,
0
,
async
function
(
done
)
{
console
.
info
(
"
---------------------------FaultlogJsTest_003----------------------------------
"
);
try
{
let
now
=
Date
.
now
();
console
.
info
(
"
FaultlogJsTest_003 2 +
"
+
now
);
let
module
=
"
ohos.faultloggerjs.test
"
;
const
loopTimes
=
10
;
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
--------FaultlogJsTest_003 3 +
"
+
i
+
"
----------
"
);
faultlogger
.
addFaultLog
(
i
,
faultlogger
.
FaultType
.
JS_CRASH
,
module
,
"
faultloggertestsummary03
"
+
i
);
await
msleep
(
300
);
}
await
msleep
(
1000
);
console
.
info
(
"
--------FaultlogJsTest_003 4
"
+
"
----------
"
);
let
ret
=
await
faultlogger
.
querySelfFaultLog
(
faultlogger
.
FaultType
.
JS_CRASH
);
console
.
info
(
"
FaultlogJsTest_003 ret ==
"
+
ret
.
length
);
expect
(
ret
.
length
).
assertEqual
(
loopTimes
);
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
faultloggertestsummary03
"
+
i
+
"
fullLog.length
"
+
ret
[
i
].
fullLog
.
length
);
if
(
ret
[
i
].
fullLog
.
indexOf
(
"
faultloggertestsummary03
"
+
(
loopTimes
-
1
-
i
))
!=
-
1
)
{
console
.
info
(
"
FaultlogJsTest_003
"
+
ret
[
i
].
fullLog
.
length
);
expect
(
true
).
assertTrue
();
}
else
{
expect
(
false
).
assertTrue
();
}
}
done
();
return
;
}
catch
(
err
)
{
console
.
info
(
"
catch (err) ==
"
+
err
);
}
console
.
info
(
"
FaultlogJsTest_003 error
"
);
expect
(
false
).
assertTrue
();
done
();
})
/**
* test
*
* @tc.name: FaultlogJsTest_004
* @tc.desc: 检验promise同步方式获取faultlog APP_FREEZE日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it
(
'
FaultlogJsTest_004
'
,
0
,
async
function
(
done
)
{
console
.
info
(
"
---------------------------FaultlogJsTest_004----------------------------------
"
);
try
{
let
now
=
Date
.
now
();
console
.
info
(
"
FaultlogJsTest_004 2 +
"
+
now
);
let
module
=
"
ohos.faultloggerjs.test
"
;
const
loopTimes
=
10
;
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
--------FaultlogJsTest_004 3 +
"
+
i
+
"
----------
"
);
faultlogger
.
addFaultLog
(
i
,
faultlogger
.
FaultType
.
APP_FREEZE
,
module
,
"
faultloggertestsummary04
"
+
i
);
await
msleep
(
300
);
}
await
msleep
(
1000
);
console
.
info
(
"
--------FaultlogJsTest_004 4
"
+
"
----------
"
);
let
ret
=
await
faultlogger
.
querySelfFaultLog
(
faultlogger
.
FaultType
.
APP_FREEZE
);
console
.
info
(
"
FaultlogJsTest_004 ret ==
"
+
ret
.
length
);
expect
(
ret
.
length
).
assertEqual
(
loopTimes
);
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
faultloggertestsummary04
"
+
i
+
"
fullLog.length
"
+
ret
[
i
].
fullLog
.
length
);
if
(
ret
[
i
].
fullLog
.
indexOf
(
"
faultloggertestsummary04
"
+
(
loopTimes
-
1
-
i
))
!=
-
1
)
{
console
.
info
(
"
FaultlogJsTest_004
"
+
ret
[
i
].
fullLog
.
length
);
expect
(
true
).
assertTrue
();
}
else
{
expect
(
false
).
assertTrue
();
}
}
done
();
return
;
}
catch
(
err
)
{
console
.
info
(
"
catch (err) ==
"
+
err
);
}
console
.
info
(
"
FaultlogJsTest_004 error
"
);
expect
(
false
).
assertTrue
();
done
();
})
/**
* test
*
* @tc.name: FaultlogJsTest_005
* @tc.desc: 检验通过回调方式获取faultlog日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it
(
'
FaultlogJsTest_005
'
,
0
,
async
function
(
done
)
{
console
.
info
(
"
---------------------------FaultlogJsTest_005----------------------------------
"
);
try
{
let
now
=
Date
.
now
();
console
.
info
(
"
FaultlogJsTest_005 start +
"
+
now
);
let
module
=
"
ohos.faultloggerjs.test
"
;
const
loopTimes
=
10
;
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
--------FaultlogJsTest_005 +
"
+
i
+
"
----------
"
);
faultlogger
.
addFaultLog
(
i
+
20
,
faultlogger
.
FaultType
.
CPP_CRASH
,
module
,
"
faultloggertestsummary05
"
+
i
);
await
msleep
(
300
);
}
await
msleep
(
1000
);
console
.
info
(
"
--------FaultlogJsTest_005 4----------
"
);
function
queryFaultLogCallback
(
error
,
ret
)
{
if
(
error
)
{
console
.
info
(
'
FaultlogJsTest_005 once error is
'
+
error
);
}
else
{
console
.
info
(
"
FaultlogJsTest_005 ret ==
"
+
ret
.
length
);
expect
(
ret
.
length
).
assertEqual
(
loopTimes
);
for
(
let
i
=
0
;
i
<
loopTimes
;
i
++
)
{
console
.
info
(
"
faultloggertestsummary05
"
+
i
+
"
fullLog.length
"
+
ret
[
i
].
fullLog
.
length
);
if
(
ret
[
i
].
fullLog
.
indexOf
(
"
faultloggertestsummary05
"
+
(
loopTimes
-
1
-
i
))
!=
-
1
)
{
console
.
info
(
"
FaultlogJsTest_005
"
+
ret
[
i
].
fullLog
.
length
);
expect
(
true
).
assertTrue
();
}
else
{
expect
(
false
).
assertTrue
();
}
}
}
done
();
}
faultlogger
.
querySelfFaultLog
(
faultlogger
.
FaultType
.
CPP_CRASH
,
queryFaultLogCallback
);
return
;
}
catch
(
err
)
{
console
.
info
(
err
);
}
console
.
info
(
"
FaultlogJsTest_005 error
"
);
expect
(
false
).
assertTrue
();
done
();
})
})
\ No newline at end of file
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/resources/base/element/string.json
0 → 100755
浏览文件 @
c54fc8a9
{
"string"
:
[
{
"name"
:
"app_name"
,
"value"
:
"FaultloggerJs"
},
{
"name"
:
"mainability_description"
,
"value"
:
"hap sample empty page"
}
]
}
hiviewdfx/hiview/faultlogger/faultloggerjs/src/main/resources/base/media/icon.png
0 → 100755
浏览文件 @
c54fc8a9
6.6 KB
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录