Android Studio中Junit单元测试使用JSON对象异常的问题
程序员文章站
2022-04-25 07:53:58
...
Android Studio 2.0 Beta5中使用本机单元测试时,遇到使用JSONObject代码时抛出异常:
比如:JSONObject jsonObject = new JSONObject();
报异常:java.lang.RuntimeException: Method put in org.json.JSONObject not mocked. See https://sites.google.com/a/android.com/tools/tech-docs/unit-testing-support for details.
但是将测试代码放到设备AndroidTest中,使用JSONObject代码时无异常。
原来,JSON包含在Android SDK中,JUnit单元测试无法使用,会抛异常;但可以在AndroidTest中使用,如果要在Junit中使用,需要在App或Library项目的build.gradle中添加依赖:
testCompile files(‘libs/json.jar’)
其实上面异常中google给了链接说明,可惜我大天朝子民已习惯忽略点击那个不可能访问的站点。
上一篇: Spring Boot 整合 JPA