1. 程式人生 > >JUnit報錯method initializationerror not found的解決方法

JUnit報錯method initializationerror not found的解決方法

我在一個類裡先寫了testCompress方法,Junit測試正常執行,然後更進一步增加了testBatchCompress()對testCompress方法進行呼叫,用JUnit測試報method initializationerror not found:錯誤:提示頁面如下:



,然後查詢解決問題方法,有說在匯入junit.jar之後還要匯入hamcrest-core-1.3.jar,hamcrest-library-1.3.jar,


根據建議匯入junit.jar後,再junit執行testBatchCompress測試方法,還是報錯,另看帖子說需要加方法前public,我的方法裡都帶有public,應該不存在此問題,最後我把testCompress方法上的@Test去掉後,測試執行成功。