1. 程式人生 > >AndroidStudio單元測試配置

AndroidStudio單元測試配置

AndroidStuido中進行單元測試需要新增相應的包才可以。

AndroidStudio中測試有兩種:test和AndroidTest。

1、test需要在build檔案中新增依賴包:

testCompile 'junit:junit:4.12'

2、AndroidTest需要在build中新增配置

   (1)defaultConfig程式碼塊下新增:

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
(2)新增依賴包
androidTestCompile 'com.android.support:support-annotations:24.2.1'
androidTestCompile 'com.android.support.test:runner:0.4.1' androidTestCompile 'com.android.support.test:rules:0.4.1'