从Android Studio运行UiAutomator API(v0.8)

当我使用测试时 – 我在特殊模块中添加类并运行测试配置.类扩展(例如)TestCase并且运行良好.

但是当我扩展UiAutomatorTestCase时 – 我得到了错误

java.lang.RuntimeException: Stub!
    at com.android.uiautomator.testrunner.UiAutomatorTestCase.<init>  (UiAutomatorTestCase.java:5) ...

我的简单课程:

import com.android.uiautomator.core.UiObjectNotFoundException;
import com.android.uiautomator.testrunner.UiAutomatorTestCase;

public class AutoTest extends UiAutomatorTestCase {
    public void testSome() throws UiObjectNotFoundException {
        getUiDevice().pressHome();
    }
}

如何在Android Studio IDE中运行它?

最佳答案 好吧,如果你有兴趣再试一次……我能够通过以下[Github项目](
https://github.com/wiliamsouza/bluetooth)在Android Studio中启动UIAutomator项目

>在本地克隆项目.
>编辑gradle.properties文件以指向您的sdk,目标和构建工具
>导入到Android Studio,如果提示,请务必选择Gradle.

随附的[博客文章](http://wiliamsouza.github.io/#/2013/10/30/android-uiautomator-gradle-build-system)有更多细节.

我用自己的测试用例进行了修改,运行良好.

点赞