Android Monkey Test报告中“事件”的含义是什么?

时间:2012-09-13 08:30:04

标签: android testing monkey

来自Android Monkey Test的报告。

Event percentages:
  0: 15.0%
  1: 10.0%
  2: 15.0%
  3: 25.0%
  4: 15.0%
  5: 2.0%
  6: 2.0%
  7: 1.0%
  8: 15.0%

0-8的确切含义是什么?

2 个答案:

答案 0 :(得分:4)

我找到了答案   0:15.0%触摸   1:10.0%运动
  2:15.0%追溯   3:25.0%syskeys   4:15.0%导航   5:2.0%majornav   6:2.0%的appwitch   7:1.0%翻转   8:15.0%anyevent

答案 1 :(得分:2)

现在,Android Monkey Test正在编写有关运行测试的更多信息(您可以指定更多选项来运行测试)。

使用所有提供选项运行的示例:

./adb.exe shell monkey -p your.package.name --pct-touch 1 --pct-motion 2 --pct-pinchzoom 3 --pct-trackball 4 --pct-rotation 5 --pct-nav 6 --pct-majornav 7 --pct-syskeys 8 --pct-appswitch 9 --pct-flip 10 --pct-anyevent 45 --throttle 500 -v 50

Monkey写了这样的东西(添加了适当的切换器):

// Event percentages:
//   0: 1.0%    (--pct-touch 1)         
//   1: 2.0%    (--pct-motion 2)        
//   2: 3.0%    (--pct-pinchzoom 3)     
//   3: 4.0%    (--pct-trackball 4)     
//   4: 5.0%    (--pct-rotation 5)      
//   5: 6.0%    (--pct-nav 6)           
//   6: 7.0%    (--pct-majornav 7)      
//   7: 8.0%    (--pct-syskeys 8)       
//   8: 9.0%    (--pct-appswitch 9)     
//   9: 10.0%   (--pct-flip 10)         
//   10: 45.0%  (--pct-anyevent 45)     

这里解释了许多选项:https://developer.android.com/studio/test/monkey.html

你可以在这里查看grap代码:https://searchcode.com/codesearch/view/109282209/