1. 程式人生 > >java錯誤分析之junit測試錯誤(實驗一)

java錯誤分析之junit測試錯誤(實驗一)

 

本文轉自:https://www.cnblogs.com/anny0404/p/5275595.html

在原作者的基礎上進行部分新增,也很感謝原作者這篇博文,幫我分析與解決問題!

 

  原文:

下載了最新的JUnit版本,是4.12,結果嘗試使用發現總是報java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing這樣的錯誤,

上網查了一下,一般的解決方案是,換一個低一點的版本就好了。還有人說,是缺少hamcrest的包。去官網又看了一下,結果發現這樣一段話:

  • junit.jar: Includes the Hamcrest classes. The simple all-in-one solution to get started quickly.Starting with version 4.11, Hamcrest is no longer included in this jar.
  • junit-dep.jar: Only includes the JUnit classes but not Hamcrest. Lets you use a different Hamcrest version.

  注意黑色加下劃線的部分。說明4.1.2中沒有hamcrest包了,不知道作者是怎麼想的。

 

最好的解決方法是:

(1)換成junit-4.8.jar

(2)junit-4.12.jar + hamcrest-core-1.3.jar

下載連結:

junit-4.12.jar

hamcrest-core-1.3.jar

 

新增:

本人使用的是junit-4.1.1版本,報錯,然後下載了hamcrest-core-1.3.jar,包,匯入專案後正常執行,下面是測試案例:

 

以上是沒有增加hamcrest-core-1.3.jar包,接下來加入該包:

 

到此,問題解決!

  原文:

下載了最新的JUnit版本,是4.12,結果嘗試使用發現總是報java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing這樣的錯誤,

上網查了一下,一般的解決方案是,換一個低一點的版本就好了。還有人說,是缺少hamcrest的包。去官網又看了一下,結果發現這樣一段話:

  • junit.jar: Includes the Hamcrest classes. The simple all-in-one solution to get started quickly.Starting with version 4.11, Hamcrest is no longer included in this jar.
  • junit-dep.jar: Only includes the JUnit classes but not Hamcrest. Lets you use a different Hamcrest version.

  注意黑色加下劃線的部分。說明4.1.2中沒有hamcrest包了,不知道作者是怎麼想的。

 

最好的解決方法是:

(1)換成junit-4.8.jar

(2)junit-4.12.jar + hamcrest-core-1.3.jar

下載連結:

junit-4.12.jar

hamcrest-core-1.3.jar

 

新增:

本人使用的是junit-4.1.1版本,報錯,然後下載了hamcrest-core-1.3.jar,包,匯入專案後正常執行,下面是測試案例:

 

以上是沒有增加hamcrest-core-1.3.jar包,接下來加入該包:

 

到此,問題解決!