[컴][안드로이드] 안드로이드 Mockito 를 사용해서 local unit test




Android Unit test

Android Studio 에서 local 에서 unit test 하기
기본적으로 unittest 를 android 에 올려서 하는데, 이것을 "Android Instruments Test" 라고 부르고 있다.

그런데 local 에서 unittest 도 할 수 있다.

이 방법의 자세한 방법은 아래를 참고하면 된다.





Local Unit test 해보기, Mockito 사용

Mockito gradle설정

참고

dependencies {
    // Unit testing dependencies
    testCompile 'junit:junit:4.12'
    // Set this dependency if you want to use Mockito
    testCompile 'org.mockito:mockito-core:1.10.19'
    // Set this dependency if you want to use Hamcrest matching
    testCompile 'org.hamcrest:hamcrest-library:1.1'
}



Build variants 설정

Build Variants -> UnitTest

unit test 실행






댓글 없음:

댓글 쓰기