添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
< 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>
作者: 陈彦斌