无法在 Intellij 下运行 Junit 测试,但可以在 Intellij IDE 中的 maven 下运行

问题描述 投票:0回答:1

直到最近,我已经能够在 Intellij、Intellij 下的 Maven 和独立的 Maven 中运行 Java Junit 测试。然而最近我无法在 Intellij 中运行它们,因为我收到消息:

Error: Could not find or load main class '--enable-preview'

由以下原因引起:java.lang.ClassNotFoundException:'--enable-preview'

我在使用其他方法运行它们时没有发现任何问题。在 Maven Surefire 中,我设置了参数 --enable-preview。

我尝试在 Intellij 的标准 Junit 模板中设置 --enable-preview 设置,但我仍然收到相同的消息。

我不确定我正在使用哪些实验性功能需要我启用预览。

java maven intellij-idea junit5
1个回答
0
投票

我建议您重建项目并分享您将 --enable-preview arg 放在哪里。看来您放错了位置,IntelliJ 假定“--enable-preview”是一个不存在的类。

© www.soinside.com 2019 - 2024. All rights reserved.