Can I have a gradle test report for tests on Android? I want to get the report directly in the terminal. Every time a test is passed, failed or skipped, I want the report to be printed in the terminal with the test name and status.
For unit tests, I can add this to the gradle file to have reports:
tasks.withType(Test) {
testLogging {
exceptionFormat "full"
events "passed", "skipped", "failed"
}
}
I did not find a solution for tests on Android.
source
share