IDEA手動添加junit4時出現的問題與解決方法

當我寫@Test註解時,一直報錯

 

後來百度是缺少junit4的包

手動添加junit4包

具體查看是在左上角 file–>project structure

點擊進來以後選擇modules,再點擊當前的項目JDBC,就可以看到當前模塊的一些依賴庫,此時是沒有導入junit4的。

此時點擊右邊加號,點擊2.library,再點擊Java,選擇IDEA安裝目錄,在lib文件夾中找到junit-4.12

然後應用,此時@Test註解不再報錯,但是運行時出現錯誤

查詢官網:

查官網:

JUnit now uses the latest version of Hamcrest. Thus, you can use all the available matchers and benefit from an improved assertThat which will now print the mismatch description from the matcher when an assertion fails.

所以出現這個錯誤的原因是:還有一個hamcrest-core-1.3.jar包未導入

重復上述操作,把hamcrest-core-1.3.jar導入項目

此時就可以愉快的進行測試瞭

總結

到此這篇關於IDEA手動添加junit4時出現的問題與解決方法的文章就介紹到這瞭,更多相關IDEA手動添加junit4內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: