https://kotlinlang.org logo
#test
Title
# test
m

Merlin (they)

10/23/2023, 12:35 AM
In gradle, in the android section, I have this code, which forces the test logger to show the state of every test, instead of just failing ones. 1. How can I do this same thing for instrumentation tests? There does not seem to be a
instrumentationTests.all
option 2. Also, how can I include instrumentation tests in kover coverage reports?
Copy code
android {
	testOptions {
		unitTests.all {
			useJUnitPlatform()
			testLogging {
				events 'passed', 'skipped', 'failed'
			}
		}
	}
}