本文介紹了用于JUnit4的JUnit5老式引擎錯誤:不支持的版本:JUNIT:JUNIT:4.11。請升級到版本4.12或更高版本。如何降級?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
Internal Error occurred.
org.junit.platform.commons.JUnitException: TestEngine with ID 'junit-vintage' failed to discover tests
at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discoverEngineRoot(EngineDiscoveryOrchestrator.java:111)
at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discover(EngineDiscoveryOrchestrator.java:85)
at org.junit.platform.launcher.core.DefaultLauncher.discover(DefaultLauncher.java:92)
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:75)
at com.intellij.junit5.JUnit5IdeaTestRunner.startRunnerWithArgs(JUnit5IdeaTestRunner.java:71)
at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:33)
at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:220)
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:53)
Caused by: org.junit.platform.commons.JUnitException: Unsupported version of junit:junit: 4.11. Please upgrade to version 4.12 or later.
at org.junit.vintage.engine.JUnit4VersionCheck.checkSupported(JUnit4VersionCheck.java:49)
at org.junit.vintage.engine.JUnit4VersionCheck.checkSupported(JUnit4VersionCheck.java:35)
at org.junit.vintage.engine.VintageTestEngine.discover(VintageTestEngine.java:62)
at org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.discoverEngineRoot(EngineDiscoveryOrchestrator.java:103)
... 7 more
當我使用帶有Vintage Engine的JUnit5時,出現此錯誤。其目的是:
嘗試逐步遷移到JUnit5,而不破壞整個大項目的一個模塊中現有的JUnit4測試
不要觸及我的模塊中現有的JUnit4依賴項
那么,我如何知道應該將JUnit5降級到哪個版本才能與JUnit4.11兼容?我現在的版本是5.7.0。
推薦答案
任何降級版本的JUnit5或JUnitvintage Engine都不會支持JUnit4.11。JUnit Vintage需要JUnit 4.12或更高版本。
(source,其中others)
這篇關于用于JUnit4的JUnit5老式引擎錯誤:不支持的版本:JUNIT:JUNIT:4.11。請升級到版本4.12或更高版本。如何降級?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,