gpt4 book ai didi

intellij-idea - 如何在intellij中添加junit.jar?

转载 作者:行者123 更新时间:2023-12-04 02:11:50 28 4
gpt4 key购买 nike

当我写 import org.junit.* IDE 说无法解析符号 junit 并将其显示为红色。然后我什至不能导入单元测试;
既不是junit也不是groovy Junit。

我想也许我应该先安装 junit.jar,但是 junit 已经安装在插件中了!
如何安装junit.jar?如果有必要

这不是如何将 jUnit 添加到我的程序,而是如何添加该插件(也许)
这个问题在这里configuring intellij ...

IDE 是 intellij 社区版,我的操作系统是 linux。

最佳答案

您已经为 IntelliJ IDEA 安装了 JUnit 插件,这意味着 IDE 可以识别并支持 JUnit 测试。

但是,您缺少类路径上的 JUnit 依赖项。这意味着将适当的 JAR 文件添加到类路径,或者如果您正在使用诸如 maven 之类的依赖项管理工具,请将其添加到您的依赖项部分。

备选方案 1 - Maven 依赖项 - 将其放在您的 pom.xml 文件中 <dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>

备选方案 2 - Gradle 依赖项 - 将其放入 build.gradle 文件
apply plugin: 'java'

dependencies {
testCompile 'junit:junit:4.12'
}

备选方案 3 - 下载 JAR 并将其放在您的类路径中。

下载以下 JAR 并将它们放在您的类路径中:

junit.jar

hamcrest-core.jar

关于intellij-idea - 如何在intellij中添加junit.jar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37322111/

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