3 回答
TA贡献1802条经验 获得超10个赞
当您已经在类路径上使用了mockito-all时,也会出现此问题。
如果可能的话,只需包括模仿主体。
用于混合junit,mockito和hamcrest的Maven配置:
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
TA贡献1779条经验 获得超6个赞
问题是使用了错误的类而hamcrest.Matcher不是hamcrest.MatcherAssert类。这是从junit-4.8依赖项中提取的,这是我的一个依赖项。
要查看在测试时从哪个来源包含了哪些依赖项(和版本),请运行:
mvn dependency:tree -Dscope=test
添加回答
举报