1

我是 JUnit 的新手,使用 inteliji 想法。

import org.junit.Test;
import org.junit.Ignore;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import java.util.Date;
import static org.junit.Assert.*;
public class TestQuote {
    @Test
    public void testQuote() {
        Date date = new Date(System.currentTimeMillis());
        Quote quote=new Quote("a",date,200.0,300.0,100.0,107.0,1.0);
        assertNull("Object is null",quote);
        assertEquals("Symbol is ok",quote.getSymbol(),"a");
        assertEquals("Date is ok",quote.getDate(),System.currentTimeMillis());
        assertEquals("Open price is ok",quote.getOpenPrice(),200.0);
        assertEquals("High price is ok",quote.getHighPrice(),300.0);
        assertEquals("Low price is ok",quote.getLowPrice(),100.0);
        assertEquals("Close price is ok",quote.getClosePrice(),107.0);
    }
}

这是我的测试类的代码。JUnit.jar 被添加到类路径,但是当我运行它时它说:

java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing

任何解决方案?BTW 主程序工作正常。

4

1 回答 1

1

访问 JUnit 网站:http: //junit.org/

然后点击“下载和安装指南”:https ://github.com/junit-team/junit/wiki/Download-and-Install

然后阅读:

下载以下 JAR 并将它们放在您的测试类路径中:

  • junit.jar
  • hamcrest-core.jar
于 2013-05-18T14:41:52.517 回答