每當我在運行命令提示符我的java文件,我不斷收到錯誤說:找不到包org.junit
error: package org.junit does not exist
import static org.junit.Assert.*;
這也給出了符號的錯誤,如「@測試」 。
這是我的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,但我可能失去了一些東西。 有沒有解決方案?
這可能會有所幫助:http://stackoverflow.com/a/1792686/1862502 –