Android Studio 2.2中使用本机单元测试时,遇到使用JSONObject代码时抛出异常:
比如:JSONObject jsonObject = new JSONObject(“json字符串”);
报异常: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’) ---- 注意这里的jar名称是自己的