mavn 執行 junit 單元測試的結果為 Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

hapday發表於2024-08-20

mavn 執行 junit 單元測試的結果為 Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] --- surefire:3.2.5:test (default-test) @ joyupx-trade ---
[INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 24.609 s
[INFO] Finished at: 2024-08-20T11:14:32+08:00
[INFO] ------------------------------------------------------------------------


核心提示:
  Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

原因:一個測試用例都沒有執行,所以失敗 0 個,錯誤 0 個,跳過 0 個。
這多半是版本不一致導致。

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
<exclusion>
<artifactId>mockito-junit-jupiter</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
<exclusion>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</exclusion>
</exclusions>
</dependency>

排除掉 Spring boot 自動引入的 junit 5 依賴,然後使用自己顯示指定的版本或者直接使用 Spring boot 自動引入的版本。

相關文章