Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
assets/ | 03-May-2024 | - | 140 | 135 | ||
config/ | 03-May-2024 | - | 5 | 4 | ||
res/ | 03-May-2024 | - | 883 | 502 | ||
resources/META-INF/services/ | 03-May-2024 | - | 9 | 5 | ||
src/com/android/settings/ | 03-May-2024 | - | 179,029 | 125,097 | ||
Android.bp | D | 03-May-2024 | 3 KiB | 113 | 97 | |
AndroidManifest.xml | D | 03-May-2024 | 238 | 9 | 6 | |
OWNERS | D | 03-May-2024 | 88 | 2 | 2 | |
README.md | D | 03-May-2024 | 432 | 25 | 17 | |
new_tests_hook.sh | D | 03-May-2024 | 603 | 17 | 10 |
README.md
1# Running Settings Robolectric tests 2 3 4## The full suite 5``` 6$ croot 7$ make RunSettingsRoboTests 8``` 9 10## Running a single test class 11 12``` 13$ croot 14$ make RunSettingsRoboTests ROBOTEST_FILTER=<ClassName> 15``` 16 17For example: 18 19``` 20make RunSettingsRoboTests ROBOTEST_FILTER=CodeInspectionTest 21``` 22 23You can also use partial class name in ROBOTEST_FILTER. If the partial class name matches 24multiple file names, all of them will be executed. 25