Android UnitTest를 위한 준비
프로젝트별 내용은 상이하지만 대충 방법에 대해 기록하려합니다. (작성중) 1. build.gradle 속성 편집testCompile 'junit:junit:4.12' // Espresso core androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) androidTestCompile('com.android.support.test:runner:0.5', { exclude group: 'com.android.support', module: 'support-annotations' }) androidT..
Android/Develop
2017. 5. 16. 15:04