gpt4 book ai didi

java - Intellij 不运行测试

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:56:19 27 4
gpt4 key购买 nike

将我的项目导入 Intellij 并成功构建后,我正在尝试运行我项目的一些测试。我导航到测试文件并选择运行 -> 运行。但是,这不会运行我的测试,只会打开一个小的“编辑配置”窗口,如所附照片所示。

enter image description here

而且,当我按提示选择Edit Configurations时,找不到JUnit。窗口如下所示。

enter image description here

我需要做什么才能运行测试?

最佳答案

对我来说,这也是我的 pom.xml 的问题。检查后Junit5-samples pom .我注意到测试插件不见了。所以我只需要添加:

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>

您可能还想检查您的 pom 是否包含:

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>

关于java - Intellij 不运行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34303792/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com