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