parameters
The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings.
For fuzz tests (Android only):
event_count: The number of events, between 1 and 10000, that the UI fuzz test should perform.
throttle: The time, in ms, between 0 and 1000, that the UI fuzz test should wait between events.
seed: A seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.
For Instrumentation:
filter: A test filter string. Examples:
Running a single test case:
com.android.abc.Test1Running a single test:
com.android.abc.Test1#smokeRunning multiple tests:
com.android.abc.Test1,com.android.abc.Test2
For XCTest and XCTestUI:
filter: A test filter string. Examples:
Running a single test class:
LoginTestsRunning a multiple test classes:
LoginTests,SmokeTestsRunning a single test:
LoginTests/testValidRunning multiple tests:
LoginTests/testValid,LoginTests/testInvalid