1 Star 0 Fork 0

橙子/androidutils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rotation_test.go 653 Bytes
一键复制 编辑 原始数据 按行查看 历史
shengxiang 提交于 2018-01-23 15:05 . add rotation get
package androidutils
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestRotationDumpsysInput(t *testing.T) {
r, err := getRotationDumpsysInput(`SurfaceWidth: 1080px
SurfaceHeight: 1920px
SurfaceLeft: 0
SurfaceTop: 0
SurfaceOrientation: 1
Translation and Scaling Factors:`)
assert.NoError(t, err)
assert.Equal(t, 90, r)
}
func TestRotationMinicap(t *testing.T) {
r, err := getRotationMinicap(`{
"id": 0,
"width": 1080,
"height": 1920,
"xdpi": 442.45,
"ydpi": 443.35,
"size": 4.97,
"density": 3.00,
"fps": 60.00,
"secure": true,
"rotation": 90
}`)
assert.NoError(t, err)
assert.Equal(t, 90, r)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xuchengzhi/androidutils.git
[email protected]:xuchengzhi/androidutils.git
xuchengzhi
androidutils
androidutils
master

搜索帮助