Why can't I import AndroidJUnit4 and ActivityTestRule into my unit test class?

后端 未结 8 564
一个人的身影
一个人的身影 2020-12-08 02:02

I\'m having trouble importing some of the Android UI testing framework classes - I just can\'t figure out what is going wrong!

This is my class:

@Run         


        
8条回答
  •  温柔的废话
    2020-12-08 02:23

    need this add dependencies

     testCompile 'com.android.support.test:rules:0.5'
     testCompile 'com.android.support.test:runner:0.5'
    

提交回复
热议问题