Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
assets/ | 05-Jul-2025 | - | 141 | 137 | ||
config/ | 04-Jul-2025 | - | 7 | 7 | ||
res/ | 04-Jul-2025 | - | 896 | 509 | ||
resources/META-INF/services/ | 04-Jul-2025 | - | 9 | 5 | ||
src/com/android/settings/ | 04-Jul-2025 | - | 298,783 | 215,568 | ||
testutils/com/android/settings/testutils/ | 04-Jul-2025 | - | 2,335 | 1,516 | ||
Android.bp | D | 04-Jul-2025 | 3.2 KiB | 124 | 109 | |
AndroidManifest.xml | D | 04-Jul-2025 | 1.1 KiB | 29 | 10 | |
OWNERS | D | 04-Jul-2025 | 105 | 4 | 3 | |
README.md | D | 04-Jul-2025 | 401 | 24 | 16 | |
new_tests_hook.sh | D | 04-Jul-2025 | 603 | 17 | 10 |
README.md
1# Running Settings Robolectric tests 2 3 4## The full suite 5``` 6$ croot 7$ atest SettingsRoboTests 8``` 9 10## Running a single test class 11 12With a filter 13 14``` 15$ croot 16$ atest SettingsRoboTests:com.android.settings.display.AdaptiveSleepPreferenceControllerTest 17``` 18 19You can also run any single test class with atest (it will try to find the correct path) 20 21``` 22$ atest AdaptiveSleepPreferenceControllerTest 23``` 24