Maven项目使用hamcrest出错
在使用Maven项目进行测试中,
因为要引入Hamcrest的一些东西,所以需要使用如下import 代码:
import static org.hamcrest.Matchers.*
<dependency><groupId>org.hamcrest</groupId><artifactId>hamcrest-library</artifactId><version>${hamcrest.version}</version><scope>test</scope></dependency>
assertThat( mapVar1, is(mapVar2));