当我使用 Junit 运行测试用例时,它通过但使用 mvn install 失败。
assertEquals(2, flight.getDelayCodes().getLocal().size());
[错误] 失败:[错误] FlightEventHandlerTest.testDelayCodesUpdateFields:302 预期:<2> 但是:<0>
我尝试通过添加junitdependecny,使用surefire插件尝试仍然相同的错误仍然相同的错误
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>always</forkMode>
<forkCount>4</forkCount>
<argLine>${argLine}</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<includes>
<include>**/*Test.java</include>
</includes>
<runOrder>failedfirst</runOrder>
</configuration>
</plugin>