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.
Mockito 和 Dexmaker 项目的文档似乎没有明确说明两者之间的关系,它们只是相互提及。如果需要Dexmaker,哪些版本的Mockito和Dexmaker兼容?,是否只需要dexmaker-mockito神器?
您需要最新版本的 mockito(目前为 1.9.5),如主文档 §28中所示。Mockito 提供了一种拥有不同字节码引擎的方法,如果它在同一个类路径上,则 dexmaker-mockito 提供。(确实,那里的 wiki 有点过时了,但它声明你需要两个罐子)。
希望有帮助。
当我同时包含 Mockito 和 DexMaker 时出现错误。最后,这是我添加到 gradle 中的内容:
//compile 'org.mockito:mockito-all:1.9.5' compile 'com.google.dexmaker:dexmaker:1.2' compile 'com.google.dexmaker:dexmaker-mockito:1.2'