Assigned
Status Update
Comments
be...@google.com <be...@google.com>
ad...@google.com <ad...@google.com> #2
Do you have a repro project that you could share with us?
There should be no need to excluding any dependencies: we automatically remove them from the test APK if they are in the main APK.
There should be no need to excluding any dependencies: we automatically remove them from the test APK if they are in the main APK.
Description
For instrumentation tests:
./gradlew :app:integrationStagingServerAndroidTest
would be configured to run:
./gradlew app:connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.class=com.example.android.testing.blueprint.ui.ApiStagingServerTests
For JVM test:
./gradlew :app:preSubmitTest
would be equivalent to
./gradlew :app:testDebugUnitTest --tests "com.example.android.testing.blueprint.unit.preSubmit.*"
If there is a way we should document it.