带有ActivityInstrumentationTestCase2的JUnit 4

时间:2015-01-21 14:52:55

标签: android junit4 android-testing junit3

我可以使用JUnit 4和我的类扩展ActivityInstrumentationTestCase2吗?

我收到以下警告:

  

@Test内部扩展JUnit3 TestCase

我的班级

public class MainActivityTest extends ActivityInstrumentationTestCase2<MainActivity> {
}

2 个答案:

答案 0 :(得分:4)

  

我可以使用JUnit 4和我的类扩展ActivityInstrumentationTestCase2吗?

是的,但您必须关注the documented recipe(请参阅页面中间的ActivityInstrumentationTestCase2说明)。

This sample project包含跟随食谱的ActivityInstrumentationTestCase2

  

我收到以下警告

是的,那是an IDEA warning that should be fixed in an upcoming release of Android Studio

答案 1 :(得分:1)

不。 Android JUnit是JUnit3。测试是名称以&#34; test&#34;

开头的方法