欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Maven下org.junit.Test无法使用

程序员文章站 2022-05-13 15:11:26
...

我在看Spring in action(第四版)的时候,看到了5.2.1测试控制器这一个部分的时候发现无法导入org.junit.Test和assertEquals。

代码的情况

Maven下org.junit.Test无法使用

就是这样子,查看了一下自己的pom.xml文件,发现这里的多了一行<scope>test</scope>

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version>
    <scope>test</scope> <!--这一行是多余的-->
</dependency>

将该行删去后即可

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version>
</dependency>

这下没有问题了

Maven下org.junit.Test无法使用

相关标签: @Test