1. ホーム
  2. android

アンドロイドスタジオでJunitのエラー問題を解決する

2022-02-13 18:27:41

エラーメッセージは以下のように表示されます。

Error:プロジェクト ':app' の構成に問題が発生しました。
> junit.jar をダウンロードできませんでした (junit:junit:4.12)
   > リソース 'https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.jar' を取得できませんでした。
      > 'https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.jar'をGETできませんでした。
         > https://jcenter.bintray.com への接続が拒否されました。

この原因は、アプリのbuild.gradleにあります。

dependencies {
    ......
    testCompile 'junit:junit:4.12'
   ......... 
}
Compile the test case with 'junit:junit:4.12; remove the line; compile with the following error.



D:\android_workMyApplication_appsrctest.java
Error:(3, 17) error: package org.junit does not exist
Error:(5, 24) error: package org.junit does not exist
Error:(11, 6) error: cannot find symbol class Test
Error:(13, 9) error: cannot find symbol method assertEquals(int,int)

の下にあるandroid studioディレクトリにあるorg.junitパッケージが見つからなかったためです。

gradlegradle-2.10 libplugins급junit-4.12.jar; just copy this package to libs directory of the project app.