最佳答案
我在导入一些 Android UI 测试框架类时遇到了麻烦——我就是不知道哪里出了问题!
这是我的课:
@RunWith(AndroidJUnit4.class)
@LargeTest
public class ExampleUnitTest {
@Rule
public ActivityTestRule<MainActivity> mActivityRule = new ActivityTestRule(MainActivity.class);
@Test
public void listGoesOverTheFold() {
onView(withText("Hello world!")).check(matches(isDisplayed()));
}
}
但是由于某种原因,我得到了“无法找到符号 ActivityTestRule”和“无法找到符号 AndroidJUnit4”的错误。我试过进口,但找不到。
Gradle 中的依赖项设置为:
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
androidTestCompile 'com.android.support:support-annotations:23.4.0'
androidTestCompile 'com.android.support.test:runner:0.4'
androidTestCompile 'com.android.support.test:rules:0.4'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
所以我想我已经设置了所有的依赖项-我已经尝试了很多东西,但是没有运气。
有人知道吗?