• Home
Name Date Size #Lines LOC

..--

assets/05-Jul-2025-141137

config/04-Jul-2025-77

res/04-Jul-2025-896509

resources/META-INF/services/04-Jul-2025-95

src/com/android/settings/04-Jul-2025-298,783215,568

testutils/com/android/settings/testutils/04-Jul-2025-2,3351,516

Android.bpD04-Jul-20253.2 KiB124109

AndroidManifest.xmlD04-Jul-20251.1 KiB2910

OWNERSD04-Jul-2025105 43

README.mdD04-Jul-2025401 2416

new_tests_hook.shD04-Jul-2025603 1710

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