<
groupId
>
org.springframework
</
groupId
>
<
artifactId
>
spring-test
</
artifactId
>
<
version
>
5.0.7.RELEASE
</
version
>
<
scope
>
test
</
scope
>
</
dependency
>
<!--
单元测试Junit
-->
<
dependency
>
<
groupId
>
junit
</
groupId
>
<
artifactId
>
junit
</
artifactId
>
<
version
>
4.12
</
version
>
<
scope
>
test
</
scope
>
</
dependency
>
上述
scope配置
了
Junit可用的位置
,
test
表示
只能在src下的test
文件夹下面才可以使用
去掉scope配置就可以
解决后的依赖包修改为如下
<!-- spring 单元测试组件包 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.0.7.RELEASE</version>
</dependency>
<!-- 单元测试Junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>