未验证 提交 ddf17faf 编写于 作者: O openharmony_ci 提交者: Gitee

!7188 hidebug测试用例修改

Merge pull request !7188 from chenxuihui/master
......@@ -85,7 +85,7 @@ describe('HiCheckerTest', function () {
expect(hichecker.contains(0)).assertEqual(false);
hichecker.addRule(999999);
console.log('add wrong rule!');
expect(hichecker.contains(-1)).assertEqual(false);
expect(hichecker.contains(999999)).assertEqual(false);
})
/**
......
......@@ -30,7 +30,7 @@ describe('HidebugJsTest', function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0600 Test start*************');
try {
let heapSize = hidebug.getNativeHeapSize();
expect(heapSize>BigInt(0)).assertTrue();
expect(heapSize>=BigInt(0)).assertTrue();
} catch (error) {
expect().assertFail();
}
......@@ -46,7 +46,7 @@ describe('HidebugJsTest', function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0400 Test start*************');
try {
let heapAllocatedSize = hidebug.getNativeHeapAllocatedSize();
expect(heapAllocatedSize>BigInt(0)).assertTrue();
expect(heapAllocatedSize>=BigInt(0)).assertTrue();
} catch (error) {
expect().assertFail();
}
......@@ -62,7 +62,7 @@ describe('HidebugJsTest', function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0500 Test start*************');
try {
let heapFreeSize = hidebug.getNativeHeapFreeSize();
expect(heapFreeSize>BigInt(0)).assertTrue();
expect(heapFreeSize>=BigInt(0)).assertTrue();
} catch (error) {
expect().assertFail();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册