morristech
7/4/2019 - 7:34 PM

Android Unit tests logging configuration

Android Unit tests logging configuration

android {
  // ...

  testOptions.unitTests.all {
    testLogging {
      events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
    }
  }
}