我刚刚将我的项目从 Netbeans 转移到了 intelliJ IDEA,它是一个基于 junit 的测试项目。在netbeans中我使用的是语句
assertTrue("Message", conditionCustom());
它在没有任何额外导入的情况下工作。现在在 intelliJ 中使用相同的上述命令时,我必须导入文件
import static org.junit.Assert.assertTrue;
有什么办法让我不需要在我的代码文件中写上面的行吗?否则我必须编辑我的所有文件才能获得有效的 assertTrue 语句。