每当我在命令提示符下运行我的 java 文件时,我都会收到错误消息:
error: package org.junit does not exist
import static org.junit.Assert.*;
这也会在“@Test”等符号上产生错误。
这是我的java文件代码:
package org.example.antbook.junit;
//import required JUnit4 classes:
import static org.junit.Assert.*;
import org.junit.Test;
public class SimpleTest
{
@Test
public void testSomething()
{
assertTrue("MULTIPLICATION???", 4 == (2 * 2));
}
}
我相信这与导入我已经导入的 junit-4.10.jar 有关,但我可能会遗漏一些东西。有针对这个的解决方法吗?