You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
432 B
25 lines
432 B
# Running Settings Robolectric tests
|
|
|
|
|
|
## The full suite
|
|
```
|
|
$ croot
|
|
$ make RunSettingsRoboTests
|
|
```
|
|
|
|
## Running a single test class
|
|
|
|
```
|
|
$ croot
|
|
$ make RunSettingsRoboTests ROBOTEST_FILTER=<ClassName>
|
|
```
|
|
|
|
For example:
|
|
|
|
```
|
|
make RunSettingsRoboTests ROBOTEST_FILTER=CodeInspectionTest
|
|
```
|
|
|
|
You can also use partial class name in ROBOTEST_FILTER. If the partial class name matches
|
|
multiple file names, all of them will be executed.
|