Android 스튜디오에서 테스트하기  |  Android Developers

Android Studio 테스트


Android Studio는 테스트 작업을 단순화 할수 있도록 도움을 줄 수 있다.

Untitled

의존설정


안드로이드 스튜디오에서 새 프로젝트를 생성하면 다음과 같이 테스트관련 툴들이 자동으로 추가된다.

//junit 의존
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'

//Espresso 의존
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

Android Test