gpt4 book ai didi

intellij-idea - IntelliJ 无法为 Maven 项目解析 Junit

转载 作者:行者123 更新时间:2023-12-03 17:33:27 27 4
gpt4 key购买 nike

我能在 SO 上找到的最接近的帖子是:Why am I getting "Cannot resolve symbol"?

但这对我没有帮助。 :(

这是我的错误截图:
commercial photography locations

而且我已经确保我的 pom.xml 的范围是,我的实际代码也放在 test 文件夹下。
这是我的 pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.fishercoder</groupId>
<artifactId>leetcode-algorithms</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

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


mvn clean compile

运行成功。

这是结果
mvn test

这里:
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.stevesun.AddBinaryTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 sec
Running com.stevesun.MissingRangesTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec

Results :

Tests run: 10, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.913 s
[INFO] Finished at: 2017-01-08T09:13:22-08:00
[INFO] Final Memory: 16M/308M
[INFO] ------------------------------------------------------------------------

我猜我的 IntelliJ 设置有点奇怪?

最佳答案

编辑 - 通过评论解决:
在您的屏幕截图中,您的测试文件夹中有一个 test.iml。也许有排除或什么?您可以尝试删除该文件吗?

您可以尝试使 IntelliJ 中的缓存无效(通过 File | Invalidate Cache )。

您还可以尝试从 IDE 中重建您的项目(通过 Build | Rebuild Project )。

您还可以尝试通过 Maven 同步项目(重新导入所有 Maven 项目)(右侧某处应该有一个 Maven 选项卡或通过将 Maven 项目输入 Ctrl + Shift + A )。

关于intellij-idea - IntelliJ 无法为 Maven 项目解析 Junit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41535221/

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