我遇到了问题,我刚刚克隆了我的项目 =>在intellij =>中打开项目除断言导入外,所有导入工作正常
import org.junit.Assert;
我对pom file =>有依赖性
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
有人可以帮助我吗? Idea会抛出此错误“无法解析符号”断言“请参见随附的屏幕截图enter image description here
答案 0 :(得分:0)
您尝试从
进行更改import org.junit.Assert;
到
import static org.junit.Assert.*;
我解决了。