Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
d0c64131
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,发现更多精彩内容 >>
未验证
提交
d0c64131
编写于
7月 19, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 19, 2023
浏览文件
操作
浏览文件
下载
差异文件
!9372 完成graphic子系统Display模块的跨平台测试套
Merge pull request !9372 from huyanqiang/master
上级
67fed82b
48c83607
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
14 deletion
+21
-14
graphic/crossplatform/graphicDisplayetstest/src/main/ets/test/Display.test.ets
.../graphicDisplayetstest/src/main/ets/test/Display.test.ets
+21
-14
未找到文件。
graphic/crossplatform/graphicDisplayetstest/src/main/ets/test/Display.test.ets
浏览文件 @
d0c64131
...
...
@@ -41,19 +41,16 @@ export default function DisplayTest() {
console.info('displayTest getDefaultDisplaySyncTest1 begin');
try {
var dsp = display.getDefaultDisplaySync();
console.error('getDefaultDisplaySync message ' + JSON.stringify(dsp));
console.log("testGetDefaultDisplaySync001 1");
expect(dsp.id != null).assertTrue();
expect(dsp.refreshRate != null).assertTrue(
);
console.log("testGetDefaultDisplaySync001 2"
);
expect(dsp.width != null).assertTrue();
console.log("testGetDefaultDisplaySync001 3");
expect(dsp.height != null).assertTrue();
expect(dsp.rotation != null).assertTrue();
expect(dsp.densityDPI != null).assertTrue();
expect(dsp.name != null).assertTrue();
expect(dsp.alive).assertTrue();
expect(dsp.state != null).assertTrue();
expect(dsp.densityPixels != null).assertTrue();
expect(dsp.scaledDensity != null).assertTrue();
expect(dsp.xDPI != null).assertTrue();
expect(dsp.yDPI != null).assertTrue();
console.log("testGetDefaultDisplaySync001 4");
expect(dsp.orientation != null).assertTrue();
console.log("testGetDefaultDisplaySync001 5");
done();
} catch (err) {
console.error('getDefaultDisplaySyncTest1 error ' + JSON.stringify(err));
...
...
@@ -72,10 +69,15 @@ export default function DisplayTest() {
*/
it('testDisplay_Orientation001', 0, async function (done) {
var dsp = display.getDefaultDisplaySync();
console.log("testDisplay_Orientation001 1");
expect(dsp.id != null).assertTrue();
console.log("testDisplay_Orientation001 2");
expect(dsp.width != null).assertTrue();
console.log("testDisplay_Orientation001 3");
expect(dsp.height != null).assertTrue();
console.log("testDisplay_Orientation001 4");
expect(dsp.orientation != null).assertTrue();
console.log("testDisplay_Orientation001 5");
done();
});
...
...
@@ -89,10 +91,15 @@ export default function DisplayTest() {
*/
it('testOrientation001', 0, async function (done) {
var dsp = display.getDefaultDisplaySync();
expect(dsp.orientation == 0).assertTrue();
expect(dsp.orientation != 1).assertTrue();
expect(dsp.orientation != 2).assertTrue();
expect(dsp.orientation != 3).assertTrue();
console.log("testOrientation001 1...orientation:" + dsp.orientation);
expect(dsp.orientation == 0).assertTrue();
console.log("testOrientation001 2");
expect(dsp.orientation != 1).assertTrue();
console.log("testOrientation001 3");
expect(dsp.orientation != 2).assertTrue();
console.log("testOrientation001 4");
expect(dsp.orientation != 3).assertTrue();
console.log("testOrientation001 5");
done();
});
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录