Assigned
Status Update
Comments
au...@google.com <au...@google.com>
au...@google.com <au...@google.com> #2
I tried adding screenshotTestImplementation(libs.androidx.window)
but it didn't fix it.
Description
Gradle's Java plugin provides a simple CLI way to specify which tests to run by doing
./gradlew test --tests org.gradle.SomeTestClass
In contrast, trying to run a specific test through AGP requires to use:
./gradlew connectedCheck -Pandroid.testInstrumentationRunnerArguments.class=org.gradle.SomeTestClass
which is a lot more cumbersome.This bug is to request support of the syntax for AGP tests using
--tests