안드로이드 스튜디오에서 Mockito로 테스트 코드를 구현하다 "Mockito cannot mock this class - IllegalArgumentException..." 에러를 만났습니다.
org.mockito.exceptions.base.MockitoException:
Mockito cannot mock this class: class com.android.test.MyClass.
Mockito can only mock non-private & non-final classes.
If you're not sure why you're getting this error, please report to the mailing list.
해결방법을 간단히 정리하였습니다.
코드
문제가 발생했을 때 저의 테스트 코드는 아래와 같았습니다. 먼저 abstract 클래스를 구현했고
public abstract class MyClass {
public abstract void setData(int data);
public abstract int getData();
}
테스트 코드를 구현했습니다.
@RunWith(AndroidJUnit4.class)
public class AndroidTest {
@Test
public void testMockingAbstractClass() throws Exception {
int expected = 10;
MyClass mock = mock(MyClass.class);
when(mock.getData()).thenReturn(expected);
assertEquals(expected, mock.getData());
}
}
Gradle의 라이브러리 설정은 다음과 같았습니다.
implementation 'junit:junit:4.12'
androidTestImplementation 'org.mockito:mockito-core:2.28.2'
에러 로그
컴파일은 되지만 실행해보면 다음과 같은 에러가 발생합니다. 빌드는 성공하기 때문에 abstract class를 mocking할 때 문제가 있나? 라고 생각하였습니다.
org.mockito.exceptions.base.MockitoException:
Mockito cannot mock this class: class com.android.test.MyClass.
Mockito can only mock non-private & non-final classes.
If you're not sure why you're getting this error, please report to the mailing list.
IMPORTANT INFORMATION FOR ANDROID USERS:
The regular Byte Buddy mock makers cannot generate code on an Android VM!
To resolve this, please use the 'mockito-android' dependency for your application:
http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22mockito-android%22%20g%3A%22org.mockito%22
Java : 0.9
JVM vendor name : The Android Project
JVM vendor version : 2.1.0
JVM name : Dalvik
JVM version : 0.9
JVM info : null
OS name : Linux
OS version : 4.14.112+
Underlying exception : java.lang.IllegalStateException: Error invoking java.lang.ClassLoader#defineClass
at com.android.test.AndroidTest.testMockingAbstractClass(AndroidTest.java:44)
at java.lang.reflect.Method.invoke(Native Method)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
해결
StackOverflow와 블로그 등을 참고해보니, 라이브러리 설정을 잘못한 것이었습니다.
다음처럼 gradle에 mockito-core
와 mockito-android
를 추가하니 에러없이 동작하였습니다.
implementation 'junit:junit:4.12'
androidTestImplementation 'org.mockito:mockito-core:2.28.2'
androidTestImplementation 'org.mockito:mockito-android:2.28.2'
참고
Loading script...
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력