- 私を追加する方法のテストのためのAndroidのテスト - エスプレッソログ
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support:support-annotations:23.0.1'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2') {
// this library uses the newest app compat v22 but the espresso contrib still v21.
// you have to specifically exclude the older versions of the contrib library or
// there will be some conflicts
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude module: 'recyclerview-v7'
}
androidTestCompile 'junit:junit:4.12'
を使用して開始したテストのログと完成テストを印刷するにはエスプレッソに言いthere'sa方法がそうするかどう思っていました何かが起こった場合、logcatを見やすいようにしてください。
papertrailと組み合わせて、テストが失敗する理由と、プライベートインテグレーションサーバーのどこにあるのかを確認することは素晴らしいことです。
それはすでにテストランナーは、私が始めた '...ログを印刷:真剣に、実際にデバッグログ/コンソールエントリを追加する方法はありませんsuccessCloseView' – Caipivara
エスプレッソテスト?既存の出力では不十分な場合は、次の自然なステップです:moar loggingを追加してください。 – ChrisPrime