我正按照以下说明测试Android应用:http: //www.jetbrains.com/idea/webhelp/testing-android-applications.html
和这里
http://developer.android.com/guide/topics/testing/index.html
当我运行测试时它会说"实例化测试"一段时间,然后它说"无法将测试报告器连接到测试框架或测试框架意外退出".
模拟器启动正常,但屏幕上没有显示任何内容.
控制台说:
Testing started at 11:41 AM ... Waiting for device. C:\Android\tools\emulator.exe -avd GoogleAPI_2_3_3 -netspeed full -netdelay none Device connected: emulator-5554 Device is online: emulator-5554 Target device: emulator-5554 (GoogleAPI_2_3_3) Uploading file local path: C:\Users\.apk remote path: /data/local/tmp/com.mycompany Installing com.mycompany DEVICE SHELL COMMAND: pm install -r "/data/local/tmp/com.mycompany" pkg: /data/local/tmp/com.mycompany Success Running testsTest running startedFinish
Logcat似乎没有任何帮助.特别是它没有显示我在测试中输入的Log.d消息.
有趣的是,有人在Intellij开发者社区论坛上询问了这个问题:
http://devnet.jetbrains.net/message/5363961#5363961
但问题几个月来一直没有得到回答.
有人有任何诊断问题的想法吗?
这是一个已知问题,如果您没有测试方法,就会发生这种情况.定义至少一种测试方法来修复它.