提交 fdb75676 编写于 作者: Y yanglifeng1217

<add assertion>

Signed-off-by: Nyanglifeng1217 <yanglifeng5@huawei.com>
上级 9e85b532
......@@ -79,6 +79,7 @@ describe('kvManagerCallbackTest', function () {
console.info('SUB_DDM_DKV_KVMANAGER_GETKVSTORE_0100');
try {
await kvManager.getKVStore(TEST_STORE_ID, options, function (err, store) {
expect((err == undefined) && (store != null)).assertTrue();
console.info('SUB_DDM_DKV_KVMANAGER_GETKVSTORE_0100 getKVStore success');
kvStore = store;
done();
......@@ -104,6 +105,7 @@ describe('kvManagerCallbackTest', function () {
console.info('SUB_DDM_DKV_KVMANAGER_GETKVSTORE_0200 getKVStore success');
expect(null).assertFail();
} else {
expect((err != undefined)).assertTrue();
console.info('SUB_DDM_DKV_KVMANAGER_GETKVSTORE_0200 getKVStore fail');
}
done();
......
......@@ -82,6 +82,7 @@ describe('kvManagerCallbackTest', function () {
console.info('testKVManagerGetKVStore101');
try {
await kvManager.getKVStore(TEST_STORE_ID, options, function (err, store) {
expect((err == undefined) && (store != null)).assertTrue();
console.info('testKVManagerGetKVStore101 getKVStore success');
kvStore = store;
done();
......@@ -106,6 +107,7 @@ describe('kvManagerCallbackTest', function () {
console.info('testKVManagerGetKVStore102 getKVStore success');
expect(null).assertFail();
} else {
expect((err != undefined)).assertTrue();
console.info('testKVManagerGetKVStore102 getKVStore fail');
}
done();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册