You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AndroidTestingBlueprint/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -181,7 +181,7 @@ Since Gradle Android Plugin version 1.2.0 using ProGuard has become a lot easier
181
181
To try it out just uncomment the minify section for the debug build type in the app modules `build.gradle` file.
182
182
183
183
## Custom Gradle command-line arguments
184
-
Gradle allows you to pass custom arguments to `AndroidJUnitRunner`. This is equivalent to running `adb shell am instrument -w -e <argName> <argValue>`.
184
+
Gradle allows you to pass custom arguments to `AndroidJUnitRunner`. This is equivalent to running `adb shell am instrument -w -e <argName> <argValue> com.example.android.testing.blueprint.test/android.support.test.runner.AndroidJUnitRunner`.
185
185
Custom arguments can be particularly useful when you just want to run a specific test class/method/qualifier.
186
186
187
187
To pass a custom argument the -Pcom.android.tools.instrumentationTestRunnerArgs=argName=argValue
@@ -190,19 +190,19 @@ property needs to be used, in conjunction with `argName` and `argValue`. Multipl
190
190
For instance, to run all tests annotated with the `@Large` test size qualifier in the app module, execute:
0 commit comments