mherod
7/14/2015 - 12:10 PM

Android Unit tests logging configuration

Android Unit tests logging configuration

android {
  // ...

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