私は gradle プロジェクト (Gradle 1.9 を使用)を持っており、コンパイル依存関係に短剣があるプロジェクトにエスプレッソ ( https://github.com/JakeWharton/double-espressoから) を追加しようとしています。
これが私の依存構造です:
依存関係 {
compile 'com.crashlytics.android:crashlytics:1.+'
compile 'com.commonsware.cwac:merge:1.0.1'
compile 'com.squareup.dagger:dagger:1.2.0'
compile 'com.squareup.dagger:dagger-compiler:1.2.0'
compile 'com.mcxiaoke.volley:library:1.0.+'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.squareup.okhttp:okhttp:1.5.0'
compile 'com.android.support:support-v4:19.0.1'
compile 'com.android.support:appcompat-v7:19.0.1'
compile 'com.google.guava:guava:16.0'
instrumentTestCompile('com.jakewharton.espresso:espresso:1.1-r2') {
exclude group: 'com.squareup.dagger'
exclude group:'com.google.guava', module:'guava'
}
instrumentTestCompile('com.jakewharton.espresso:espresso-support-v4:1.1-r2') {
exclude group:'com.google.guava', module:'guava'
exclude group:'com.android.support', module:'support-v4'
exclude group: 'com.squareup.dagger'
}
}
今私の問題は、テストが開始された直後に「gradle connectedInstrumentTest」を介してテストを開始すると(アクティビティが起動されるのを確認します)、次のエラーが発生することです。
...activity.MainActivityTest > testItemText[Nexus 5 - 4.4.2] FAILED java.lang.IllegalStateException: オブジェクト グラフの作成エラー: com.google.android.apps.common.testing.ui.espresso.FailureHandler をバインドできませんでしたクラス com.google.android.apps.common.testing.ui.espresso.base.BaseLayerModule で必要なキー com.google.android.apps.common.testing.ui.espresso.FailureHandler :ClioAndroid:connectedInstrumentTest FAILED
除外グループ: 'com.squareup.dagger' をコメント アウトすると、別のエラーが発生します: 「http://b.android.com/65445」に従って予期される「java.lang.IllegalAccessError」が原因でインストルメンテーションの実行に失敗しました。
問題は、「除外グループ: 'com.squareup.dagger'」を追加すると、espresso の短剣オブジェクト グラフが台無しになることだと思います。そのための回避策を見つけることができませんでした。どんな助けでも大歓迎です。