• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

assets/15-Dec-2024-142138

config/15-Dec-2024-55

res/15-Dec-2024-850495

resources/META-INF/services/14-Jan-2024-95

src/com/android/settings/14-Jan-2024-260,712187,134

testutils/com/android/settings/testutils/15-Dec-2024-2,1771,422

Android.bpD15-Dec-20242.9 KiB116100

AndroidManifest.xmlD15-Dec-20241.1 KiB2910

OWNERSD14-Jan-202488 22

README.mdD15-Dec-2024401 2416

new_tests_hook.shD14-Jan-2024603 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