我可以使用JUnit 4和我的类扩展ActivityInstrumentationTestCase2
吗?
我收到以下警告:
@Test内部扩展JUnit3 TestCase
我的班级
public class MainActivityTest extends ActivityInstrumentationTestCase2<MainActivity> {
}
答案 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;
开头的方法