嗨,我有一个奇怪的情况。 我有一个spring boot java项目。我也有很多Junit测试。
当我通过发出命令mvn clean test从终端运行测试时,属于一个类的2个测试失败
但是,如果从eclipse中运行属于该类的那些测试,则运行方式>> Junit测试将通过。
知道为什么会这样吗?以及我该如何解决?
以下是我确定的Fire插件配置
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<!-- Force alphabetical order to have a reproducible build -->
<runOrder>alphabetical</runOrder>
</configuration>
</plugin>
谢谢