51Testing软件测试论坛
标题:
常见问题:mvn test运行测试用例检测不到?
[打印本页]
作者:
lsekfe
时间:
2021-12-17 10:41
标题:
常见问题:mvn test运行测试用例检测不到?
使用mvn test执行
测试用例
,发现构建成功了,target下面也有.class文件,但是却未运行测试用例:
因为执行框架使用的
是
Junit5
,算是相对比较新的框架,就怀疑是不是配置的问题,在Junit-team的官方GitHub中找到了关于最新的Junit5.5版本的pom文件范例。
官方地址:
https://github.com/junit-team/ju ... arter-maven/pom.xml
发现需要添加一个依赖和两个插件:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!--
[url=]
JUnit
[/url]
5 requires Surefire version 2.22.0 or higher -->
<version>2.22.0</version>
</plugin>
</plugins>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.5.0-M1</version>
<scope>test</scope>
</dependency>
再次运行mvn test,顺利通过,问题解决:
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2