Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想模拟 OkHttpClient 以使用 Mockito 进行测试。遗憾的是 OkHttpClient 是 Mockito 不支持的最终类。有没有其他可能的嘲弄,你们在那里做什么?
最好的
OkHttp 1.x 使用的 HttpURLConnection API 并不适合模拟。我们正在为 OkHttp 2 开发一个新的 API,以更好地适应这个用例。
在此期间,您可能想查看 OkHttp 的 MockWebServer,它使用一个真实的进程内 HTTP 服务器。