@@ -19,7 +19,7 @@ work, but are not supported.
19
19
20
20
| Plugin version | Gradle version | Android Gradle version |
21
21
| -------------- | -------------- | ---------------------- |
22
- | 0.5.0 | 6.7 | 4.1.1 |
22
+ | 0.5.1 | 6.7 | 4.1.1 |
23
23
| 0.4.0 | 6.5 | 4.0.0 |
24
24
| 0.3.3 | 5.4.1 | 3.4.1 |
25
25
| 0.3.2 | 5.3 | 3.3.2 |
@@ -190,10 +190,10 @@ testLab {
190
190
// Extra values to send with all tests for use with Cloud Functions.
191
191
//
192
192
// For each test, these values will be merged with the test's `clientDetails`,
193
- // with the test's values taking priority for identical keys.
193
+ // with the test's values taking priority for identical keys.
194
194
//
195
195
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions script. See the
196
- // Firebase documentation for more information:
196
+ // Firebase documentation for more information:
197
197
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details]
198
198
clientDetails.put(" pull-request" , " https://github.com/owner/repo/pulls/1234" )
199
199
@@ -214,7 +214,7 @@ testLab {
214
214
// Test targets to execute. Optional; if empty, all targets in the module will
215
215
// be ran.
216
216
targets {
217
-
217
+
218
218
// Include all tests in the given packages.
219
219
packages.add(" com.my.package.name" )
220
220
@@ -229,7 +229,7 @@ testLab {
229
229
classes.add(" !com.package.Class" )
230
230
classes.add(" !com.package.Class#method" )
231
231
232
- // Include tests annotated with *all* of the given annotations.
232
+ // Include tests annotated with *all* of the given annotations.
233
233
annotations.add(" com.package.Annotation" )
234
234
235
235
// Exclude tests annotated with *any* of the given annotations.
@@ -240,17 +240,17 @@ testLab {
240
240
241
241
// Exclude tests listed in a file located at the given path on the target device.
242
242
excludeFile.set(" /data/local/tmp/exclude.txt" )
243
-
243
+
244
244
// Include tests matching the given regular expression.
245
245
regex.set(""" ^com\.package\.(MyClass|OtherClass)#test.+""" )
246
246
247
247
// Include tests annotated with `SmallTest`, `MediumTest`, or `LargeTest` annotations.
248
248
size.set(TestSize .LARGE ) // Alternatives: TestSize.MEDIUM, TestSize.SMALL
249
-
249
+
250
250
// Uniformly distribute test targets among this number of shards. Shards are
251
251
// executed in parallel across all devices.
252
252
shardCount.set(10 )
253
-
253
+
254
254
// Add an explicit shard of test targets. Shards are executed in parallel
255
255
// across all devices.
256
256
shard {
@@ -325,26 +325,26 @@ testLab {
325
325
text(resourceName = " username" , inputText = " alice" )
326
326
}
327
327
328
- // A JSON file with a sequence of actions Robo should perform as a prologue for the
328
+ // A JSON file with a sequence of actions Robo should perform as a prologue for the
329
329
// crawl. Optional.
330
330
script.set(file(" robo-script.json" ))
331
-
331
+
332
332
// Configures the starting intents used to launch the app for the crawl. Optional.
333
333
startingIntents {
334
-
334
+
335
335
// Add an intent that starts the main launcher activity.
336
336
launcherActivity()
337
337
338
338
// Add an intent that starts the main launcher activity.
339
339
launcherActivity {
340
-
340
+
341
341
// Timeout in seconds for the intent.
342
342
timeout.set(10 )
343
343
}
344
344
345
345
// Add a starting intent specified by an action, uri, and categories.
346
346
startActivity {
347
-
347
+
348
348
// Action name. Required.
349
349
action.set(" anroid.intent.action.VIEW" )
350
350
@@ -395,10 +395,10 @@ testLab {
395
395
// Extra values to send with all tests for use with Cloud Functions.
396
396
//
397
397
// For each test, these values will be merged with the test's `clientDetails`,
398
- // with the test's values taking priority for identical keys.
398
+ // with the test's values taking priority for identical keys.
399
399
//
400
400
// These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions script. See the
401
- // Firebase documentation for more information:
401
+ // Firebase documentation for more information:
402
402
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details]
403
403
clientDetails.put("pull-request", "https://github.com/owner/repo/pulls/1234")
404
404
@@ -419,7 +419,7 @@ testLab {
419
419
// Test targets to execute. Optional; if empty, all targets in the module will
420
420
// be ran.
421
421
targets {
422
-
422
+
423
423
// Include all tests in the given packages.
424
424
packages.add("com.my.package.name")
425
425
@@ -434,7 +434,7 @@ testLab {
434
434
classes.add("!com.package.Class")
435
435
classes.add("!com.package.Class#method")
436
436
437
- // Include tests annotated with *all* of the given annotations.
437
+ // Include tests annotated with *all* of the given annotations.
438
438
annotations.add("com.package.Annotation")
439
439
440
440
// Exclude tests annotated with *any* of the given annotations.
@@ -445,17 +445,17 @@ testLab {
445
445
446
446
// Exclude tests listed in a file located at the given path on the target device.
447
447
excludeFile = "/data/local/tmp/exclude.txt"
448
-
448
+
449
449
// Include tests matching the given regular expression.
450
450
regex = $/^com\.package\.(MyClass|OtherClass)#test.+/$
451
451
452
452
// Include tests annotated with `SmallTest`, `MediumTest`, or `LargeTest` annotations.
453
453
size = TestSize.LARGE // Alternatives: TestSize.MEDIUM, TestSize.SMALL
454
-
454
+
455
455
// Uniformly distribute test targets among this number of shards. Shards are
456
456
// executed in parallel across all devices.
457
457
shardCount.set(10)
458
-
458
+
459
459
// Add an explicit shard of test targets. Shards are executed in parallel
460
460
// across all devices.
461
461
shard {
@@ -530,10 +530,10 @@ testLab {
530
530
text("username", "alice")
531
531
}
532
532
533
- // A JSON file with a sequence of actions Robo should perform as a prologue for the
533
+ // A JSON file with a sequence of actions Robo should perform as a prologue for the
534
534
// crawl. Optional.
535
535
script = file("robo-script.json")
536
-
536
+
537
537
// Configures the starting intents used to launch the app for the crawl. Optional.
538
538
startingIntents {
539
539
@@ -588,11 +588,11 @@ additionalApks.from(
588
588
589
589
// Extra values to send with this test for use with Cloud Functions.
590
590
//
591
- // These values will be merged with `testLab.clientDetails`, with the values from this
591
+ // These values will be merged with `testLab.clientDetails`, with the values from this
592
592
// test overriding existing values with identical keys.
593
593
//
594
- // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
595
- // script. See the Firebase documentation for more information:
594
+ // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
595
+ // script. See the Firebase documentation for more information:
596
596
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details
597
597
clientDetails.put(" test-name" , name)
598
598
@@ -692,11 +692,11 @@ additionalApks.from(
692
692
693
693
// Extra values to send with this test for use with Cloud Functions.
694
694
//
695
- // These values will be merged with `testLab.clientDetails`, with the values from this
695
+ // These values will be merged with `testLab.clientDetails`, with the values from this
696
696
// test overriding existing values with identical keys.
697
697
//
698
- // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
699
- // script. See the Firebase documentation for more information:
698
+ // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
699
+ // script. See the Firebase documentation for more information:
700
700
// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details
701
701
clientDetails.put("test-name", name)
702
702
0 commit comments