我在SO上找到的最近的帖子是:Why am I getting "Cannot resolve symbol"?
但它并没有帮助我。 :(
这是我的错误截图:
我确保我的pom.xml是作用域的,我的实际代码也放在测试文件夹下。 这是我的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设置猜测它是不是很时髦?
答案 0 :(得分:8)
编辑 - 通过评论解决:
在屏幕截图中,测试文件夹中有一个test.iml
。是否有排除或其他什么?你能尝试删除那个文件吗?
您可以尝试在IntelliJ中无效缓存(通过File | Invalidate Cache
)。
您还可以尝试在IDE中重建项目(通过Build | Rebuild Project
)。
你也可以尝试通过Maven 同步项目(重新导入所有Maven项目)(右侧某处应该有一个Maven Tab或者输入 Maven Projects 进入Ctrl + Shift + A
)。