Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
1bf0688f
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看板
未验证
提交
1bf0688f
编写于
6月 12, 2023
作者:
O
openharmony_ci
提交者:
Gitee
6月 12, 2023
浏览文件
操作
浏览文件
下载
差异文件
!8977 Add xts testcases for IntentionCode
Merge pull request !8977 from mengweiwww/master
上级
15ef0a2f
67ace117
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
137 addition
and
1 deletion
+137
-1
multimodalinput/input_js_standard/src/main/js/test/List.test.js
...odalinput/input_js_standard/src/main/js/test/List.test.js
+3
-1
multimodalinput/input_js_standard/src/main/js/test/MultimodalInput_IntentionCode.test.js
...rd/src/main/js/test/MultimodalInput_IntentionCode.test.js
+134
-0
未找到文件。
multimodalinput/input_js_standard/src/main/js/test/List.test.js
浏览文件 @
1bf0688f
/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Copyright (c) 2022
-2023
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
...
...
@@ -14,10 +14,12 @@
*/
import
InputDevice_test
from
'
./InputDevice.test.js
'
import
MultimodalInput_IntentionCode_test
from
'
./MultimodalInput_IntentionCode.test.js
'
import
MultimodalInput_KeyCode_test
from
'
./MultimodalInput_KeyCode.test.js
'
import
Pointer_test
from
'
./Pointer.test.js
'
export
default
function
testsuite
()
{
InputDevice_test
()
MultimodalInput_IntentionCode_test
()
MultimodalInput_KeyCode_test
()
Pointer_test
()
}
\ No newline at end of file
multimodalinput/input_js_standard/src/main/js/test/MultimodalInput_IntentionCode.test.js
0 → 100644
浏览文件 @
1bf0688f
/*
* Copyright (c) 2023 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
intentionCode
from
'
@ohos.multimodalInput.intentionCode
'
;
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
,
TestType
,
Size
,
Level
}
from
'
@ohos/hypium
'
export
default
function
MultimodalInput_IntentionCode_test
()
{
describe
(
'
MultimodalInput_IntentionCode_test
'
,
function
()
{
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_001
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_001 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_UNKNOWN
==
-
1
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_001 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_002
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_002 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_UP
==
1
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_002 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_003
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_003 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_DOWN
==
2
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_003 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_004
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_004 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_LEFT
==
3
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_004 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_005
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_005 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_RIGHT
==
4
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_005 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_006
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_006 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_SELECT
==
5
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_006 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_007
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_007 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_ESCAPE
==
6
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_007 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_008
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_008 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_BACK
==
7
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_008 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_009
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_009 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_FORWARD
==
8
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_009 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_010
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_010 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_MENU
==
9
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_010 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_011
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_011 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_PAGE_UP
==
11
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_011 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_012
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_012 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_PAGE_DOWN
==
12
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_012 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_013
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_013 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_ZOOM_OUT
==
13
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_013 exit`
);
})
it
(
'
Multimodalinput_IntentionCode_SUB_MMI_IntentionCodeTest_014
'
,
0
,
function
()
{
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_014 enter`
);
expect
(
intentionCode
.
IntentionCode
.
INTENTION_ZOOM_IN
==
14
).
assertTrue
();
console
.
info
(
`Multimodalinput_IntentionCode_test_SUB_MMI_IntentionCodeTest_014 exit`
);
})
})
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录